Advertisement
dahpiglz

Untitled

Oct 27th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. local player = game.Players.LocalPlayer
  2. local character = player.Character
  3. local mouse = player:GetMouse()
  4.  
  5. while true do
  6. wait(0.1)
  7. if character.Humanoid.Health <= 0 then
  8. character.Humanoid:Destroy()
  9. wait(1)
  10. h = Instance.new("Humanoid")
  11. h.Parent = character
  12. end
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement