cooldude78_cool

Untitled

Jan 10th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.19 KB | None | 0 0
  1. local T = ( .5 )
  2.  
  3. local player = game.Players.LocalPlayer
  4.  
  5. local char = player.Character or player.CharacterAdded:Wait()
  6.  
  7. if char then
  8.  
  9. local humanoid = char:FindFirstChild('Humanoid')
  10.  
  11. local Torso = char:FindFirstChild('Torso')
  12.  
  13. if humanoid and Torso then
  14.  
  15. local AZ = Instance.new('Sound', Torso)
  16. AZ.SoundId = 'rbxassetid://264396581'
  17. AZ.Looped = true
  18. AZ.Volume = 1
  19. wait(T)
  20. AZ:Play()
  21.  
  22. --[[ INFINITE HEALTH B ]]--
  23.  
  24. while wait() do
  25. humanoid.MaxHealth = math.huge
  26. humanoid.Health = math.huge
  27. end
  28.  
  29. humanoid.Died:connect(function()
  30. print('NANI?')
  31. end)
  32.  
  33. end
  34.  
  35. end
  36.  
  37. local T = ( .5 )
  38.  
  39. local player = game.Players.LocalPlayer
  40.  
  41. local char = player.Character or player.CharacterAdded:Wait()
  42.  
  43. if char then
  44.  
  45. local humanoid = char:FindFirstChild('Humanoid')
  46.  
  47. local Torso = char:FindFirstChild('Torso')
  48.  
  49. if humanoid and Torso then
  50.  
  51. local AZ = Instance.new('Sound', Torso)
  52. AZ.SoundId = 'rbxassetid://264396581'
  53. AZ.Looped = true
  54. AZ.Volume = 1
  55. wait(T)
  56. AZ:Play()
  57.  
  58. --[[ INFINITE HEALTH B ]]--
  59.  
  60. while wait() do
  61. humanoid.MaxHealth = math.huge
  62. humanoid.Health = math.huge
  63. end
  64.  
  65. humanoid.Died:connect(function()
  66. print('NANI?')
  67. end)
  68.  
  69. end
  70.  
  71. end
Advertisement
Add Comment
Please, Sign In to add comment