Advertisement
C-H-4-0-S

GODMODE

Jan 10th, 2024 (edited)
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.54 KB | None | 0 0
  1. local lp = game:GetService "Players".LocalPlayer
  2. if lp.Character:FindFirstChild "Head" then
  3. local char = lp.Character
  4. char.Archivable = true
  5. local new = char:Clone()
  6. new.Parent = workspace
  7. lp.Character = new
  8. wait(2)
  9. local oldhum = char:FindFirstChildWhichIsA "Humanoid"
  10. local newhum = oldhum:Clone()
  11. newhum.Parent = char
  12. newhum.RequiresNeck = false
  13. oldhum.Parent = nil
  14. wait(2)
  15. lp.Character = char
  16. new:Destroy()
  17. wait(1)
  18. newhum:GetPropertyChangedSignal("Health"):Connect(
  19. function()
  20. if newhum.Health <= 0 then
  21. oldhum.Parent = lp.Character
  22. wait(1)
  23. oldhum:Destroy()
  24. end
  25. end)
  26. workspace.CurrentCamera.CameraSubject = char
  27. if char:FindFirstChild "Animate" then
  28. char.Animate.Disabled = true
  29. wait(.1)
  30. char.Animate.Disabled = false
  31. end
  32. lp.Character:FindFirstChild "Head":Destroy()
  33. end
  34.  
  35. local Player = game.Players.LocalPlayer
  36. local Character = Player.Character
  37. local Humanoid = Character.Humanoid
  38.  
  39. print('infinite health activated..')
  40.  
  41.  
  42. game.Players.LocalPlayer.Character.Humanoid.Health = 99999999999999999999999999999999999999999999999999999
  43. game.Players.LocalPlayer.Character.Humanoid.MaxHealth = 99999999999999999999999999999999999999999999999999999
  44. Humanoid.Health = Humanoid.MaxHealth / 999999999999
  45.  
  46. Humanoid.HealthChanged:connect(function()
  47. if Humanoid.Health < 1 then
  48. Humanoid.Health = Humanoid.MaxHealth
  49. end
  50. end)
  51.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement