HaxRoblox

HealthGUI

Oct 2nd, 2016
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.44 KB | None | 0 0
  1. --CREDITS : ScriptingLua_LuaTeam , xJDiviisionZ
  2. --RGB
  3. local Plr = game.Players.LocalPlayer
  4.  
  5.  
  6. local Scr = Instance.new('ScreenGui' ,Plr.PlayerGui)
  7. Scr.Name = 'HealthGui'
  8. local TL = Instance.new('TextLabel' ,Plr.PlayerGui.HealthGui)
  9. TL.Size = UDim2.new(0,30,0,20)
  10. TL.Position = UDim2.new(0,500,0,5)
  11. TL.TextWrapped = true
  12. TL.BackgroundColor3 = Color3.new(0,255,0)
  13. while true do
  14. wait(0.1)
  15. TL.Text = (Plr.Character.Humanoid.Health)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment