Hi. How would I Respawn a Player with a LocalScript? I can't use a Normal Script because of other reasons, so it needs to be a LocalScript. I tried random stuff like putting a respawn script inside the LocalScript, then making it'd Disabled false, but it only works on Studios. So, is it even possible to respawn someone with a LocalScript?
Make a LocalScript in StarterGui:
local player = game:GetService("Players").LocalPlayer wait(10) player:LoadCharacter() -- respawn the character
local plr = game.Players:Getchildren() --Get Children wait(10) --Wait 10 Seconds for I = 1, #plr do --This Will Select Everything That Is In Players plr[I]:LoadCharacter() --You Know This end -- End Line 3