How to disable character reloader when player dies?

Hello. When a player dies after a few seconds he/she get respawned. I’m wondering if there is a way to disable character reloaded or when a player dies he/she doesn’t respawn

https://developer.roblox.com/en-us/api-reference/class/Players
image

There’s a property of Players which lets you disable this.
You can either do this via the explorer, or via script:

game.Players.CharacterAutoLoads = false
2 Likes