How would I make it so when you reset you instantly respawn? What would the script be?
You might wanna put this under the CharacterAdded
event for the player:
Humanoid.Died:Connect(function()
wait() -- If you want it 100% instant you can remove this, but I'd recommend keeping it to avoid any problem
Player:LoadCharacter()
end)
1 Like
Hello, I think if you change Players.RespawnTime to 0 that’ll be enough for instant respawn.
2 Likes