Advertisement
Guest User

Untitled

a guest
Apr 25th, 2017
66
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. local HUDPots = HUD.New(0,0,'',0,0,0)
  2. -- C H E C K E R D E C O L O R
  3. Module.New('EnoughPotions', function()
  4. if (enoughSupplies == true) then
  5. Color = {r = 30, g = 144, b = 255}
  6. HUDPots:SetText("Enough Supplies")
  7. HUDPots:SetTextColor(Color.r, Color.g, Color.b)
  8. HUDPots:SetPosition(550,300)
  9. end
  10. end)
  11.  
  12. Module.New('EnoughPotions2', function()
  13. if (enoughSupplies == false) then
  14. HUDPots:SetPosition(100000,10000000)
  15. end
  16. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement