Advertisement
Roblox-Studio

Instant Respawn Script

Nov 21st, 2018
1,013
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.23 KB | None | 0 0
  1.  
  2. game.Players.PlayerAdded:connect(function(plr)
  3.     plr.CharacterAdded:connect(function(chr)
  4.         repeat wait() until chr.Humanoid
  5.         chr.Humanoid.Died:connect(function()
  6.             plr.LoadCharacter()
  7.          end)
  8.     end)
  9. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement