Advertisement
SlappyDappyCrappy

k

Jun 27th, 2018
166
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.59 KB | None | 0 0
  1.       char = game.Players.LocalPlayer.Character
  2. h = char.Humanoid
  3. AntiDeath = true
  4.         local function resethealth()
  5.             h.MaxHealth = 100
  6.             h.Health = 100
  7.         end
  8.   h.Died:connect(function()
  9.             if AntiDeath == true then
  10.                 char:MakeJoints()
  11.                 resethealth()
  12.                 char:MakeJoints()
  13.                 resethealth()
  14.             end
  15.         end)
  16.         h.Changed:connect(function()
  17.             if (AntiDeath == true) then
  18.                 resethealth()
  19.                 char:MakeJoints()
  20.             end
  21.         end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement