Advertisement
Guest User

Untitled

a guest
Sep 25th, 2017
77
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.43 KB | None | 0 0
  1. function hud()
  2.     local health = LocalPlayer():Health(math.Clamp( 0, 99999))
  3.     local armor = LocalPlayer():Armor()
  4.     local money = LocalPlayer():GetNWInt("Money")
  5.     local job = LocalPlayer():GetNWString("job")
  6.     local salary = LocalPlayer():GetNWInt("salary")
  7.  
  8. draw.RoundedBox(6, 10, ScrH()*0.9 100, 300, 50, Color(0,0,0,150))
  9. draw.RoundedBox(6, 10, ScrH() - 100, 200, health*2, Color(205,0,0,230))
  10.  
  11.  
  12. end
  13. hook.Add("HUDPaint", "hud", hud)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement