Skip to main content

setAccountMoney

Client Side

This event is triggered when the player has change any money/account

account Argument Information

childtypeexplanation
namestringAccount name (money, black_money, bank)
moneynumberAccount balance
labelstringAccount label

Example Usage

RegisterNetEvent('esx:setAccountMoney', function(account)
if account.name == 'money' then
print('Client money is: ', account.money)
end
end)