BaconsOwnTheUniverse

Instant Respawn Script [ROBLOX Studio]

Aug 4th, 2021 (edited)
165
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.30 KB | None | 0 0
  1. game.Players.PlayerAdded:connect(function(plr)
  2.     plr.CharacterAdded:connect(function(char)
  3.         repeat wait() until char.Humanoid --This waits for the humanoid
  4.         char.Humanoid.Died:connect(function(OMG)
  5.             plr:LoadCharacter(true) --This makes it so the player dies and respawns them.
  6.         end)
  7.     end)
  8. end)
  9.  
Add Comment
Please, Sign In to add comment