RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a script that respawns the player after joining the game"
-- server script game.Players.PlayerAdded:Connect(function(Player) Player.CharacterAdded:Connect(function(Character) Character:WaitForChild("Humanoid").Died:Connect(function() wait(1) Character:LoadCharacter() end) end) end)