How to Disable Reset in Roblox
Easiest way to disable reset: add a LocalScript with `game:GetService('StarterGui'):SetCore('ResetButtonCallback', false)` to StarterPlayerScripts. Simple as that!
Play Games.Earn points.Get gift cards!

Playback Rewards
(13.7k)
500k players and counting...
More Answers
Disabling the reset button isn't directly possible through Roblox settings, but a LocalScript with `game:GetService('StarterGui'):SetCore('ResetButtonCallback', false)` should do the trick.
To disable the reset button in Roblox, you need to use a script. You can add a LocalScript in StarterPlayerScripts with the following code: `game:GetService('StarterGui'):SetCore('ResetButtonCallback', false)`.
You can disable the reset button in Roblox by adding a LocalScript to your game with the code: `game.StarterGui:SetCore('ResetButtonCallback', false)`.
馃憖 If you like Roblox...
The brands referenced on this page are not sponsors of the rewards or otherwise affiliated with this company. The logos and other identifying marks attached are trademarks of and owned by each represented company and/or its affiliates. Please visit each company's website for additional terms and conditions.
People also want to know
Add an Answer