Advertisement
Batdead

Untitled

Sep 6th, 2017
377
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. local player = game.Players.LocalPlayer
  2. local char = player.Character
  3. local gui = script.Parent
  4. local frame = gui.HealthFrame
  5. local bar = frame.Bar
  6. local text = frame.HealthText
  7.  
  8. while wait() do
  9. --Update text
  10. text.Text = "HP: "..math.floor(char:WaitForChild("Humanoid").Health).."/"..char:WaitForChild("Humanoid").MaxHealth
  11. -- Update bar
  12. bar.Size = UDim2.new(0,(char:WaitForChild("Humanoid").Health / char:WaitForChild("Humanoid").MaxHealth * 200),1,0)
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement