Advertisement
AlexYaWon

Roblox infinite health script!

Aug 9th, 2022 (edited)
16,776
-4
Never
2
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.39 KB | None | 0 4
  1. local Player = game.Players.LocalPlayer
  2. local Character = Player.Character
  3. local Humanoid = Character.Humanoid
  4.  
  5. print('Infinite health active..')
  6.  
  7. Humanoid.MaxHealth = 999999
  8. Humanoid.Health = Humanoid.MaxHealth / 2000
  9.  
  10. Humanoid.HealthChanged:connect(function()
  11.     if Humanoid.Health < 99 then
  12.         Humanoid.Health = Humanoid.MaxHealth
  13.     end
  14. end)
  15. -- Made by guest - edited by me
Advertisement
Comments
Add Comment
Please, Sign In to add comment
Advertisement