Advertisement
ERROR_CODE

.AIGODBAZA

Jun 5th, 2023 (edited)
109
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.33 KB | None | 0 0
  1. while true do
  2. wait(0.1)
  3. local Player = game.Players.LocalPlayer
  4. local Character = Player.Character
  5. local Humanoid = Character.Humanoid
  6. Humanoid.MaxHealth = 999999
  7. Humanoid.Health = Humanoid.MaxHealth / 2
  8. Humanoid.HealthChanged:connect(function()
  9. if Humanoid.Health < 10 then
  10. Humanoid.Health = Humanoid.MaxHealth
  11. end
  12. end)
  13. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement