Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --CREDITS : ScriptingLua_LuaTeam , xJDiviisionZ
- --RGB
- local Plr = game.Players.LocalPlayer
- local Scr = Instance.new('ScreenGui' ,Plr.PlayerGui)
- Scr.Name = 'HealthGui'
- local TL = Instance.new('TextLabel' ,Plr.PlayerGui.HealthGui)
- TL.Size = UDim2.new(0,30,0,20)
- TL.Position = UDim2.new(0,500,0,5)
- TL.TextWrapped = true
- TL.BackgroundColor3 = Color3.new(0,255,0)
- while true do
- wait(0.1)
- TL.Text = (Plr.Character.Humanoid.Health)
- end
Advertisement
Add Comment
Please, Sign In to add comment