Disabling reset button on mobile devices

Hey all!

Question for you, how can you disable the reset button on mobile devices?

I’m aware of changing the ResetButtonCallback, which works wonders on PC, but it does not have any functionality on mobile devices. Mobile devices don’t even register the CoreGuis associated with it.

Is there any clever workaround right now that the community is aware of?

Thank you.

2 Likes

Found the solution (shoutout to @tbouy for finding this)

If you set the death state to false on the humanoid, it prevents the reset button from being functional.

Code:
chararacter:WaitForChild("Humanoid"):SetStateEnabled(Enum.HumanoidStateType.Dead, false)

3 Likes