Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- while true do
- wait(0.1)
- local Player = game.Players.LocalPlayer
- local Character = Player.Character
- local Humanoid = Character.Humanoid
- Humanoid.MaxHealth = 999999
- Humanoid.Health = Humanoid.MaxHealth / 2
- Humanoid.HealthChanged:connect(function()
- if Humanoid.Health < 10 then
- Humanoid.Health = Humanoid.MaxHealth
- end
- end)
- end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement