Guest User

Untitled

a guest
Jun 24th, 2019
4,512
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. local moneyTpl = '<div><img src="https://image.noelshack.com/fichiers/2019/25/7/1561282493-bank.png"/> {{money}}</div>'
  2.  
  3. ESX.UI.HUD.RegisterElement('money', 0, 0, moneyTpl, {
  4. money = 0
  5. })
  6.  
  7. Citizen.CreateThread(function()
  8.  
  9. while true do
  10.  
  11. Citizen.Wait(2000)
  12. ESX.UI.HUD.UpdateElement('money', {
  13. money = xPlayer.money
  14. })
  15. end
  16.  
  17. end)
Add Comment
Please, Sign In to add comment