Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

LoadCharacter Script Not Reloading Character After 2nd Reset?

Asked by 1 year ago

I have a script that utilizes LoadCharacter instead on having "Automatic Respawn" on. The code works the first time a character resets, but after the second, the character just stays in the died state... What's going on with this? This is my code:

plr:LoadCharacter()

plr.Character.Humanoid.Died:Connect(function()
    wait(3)
    plr:LoadCharacter()
end)

Answer this question