Disabling the reset button

Hey! I’ve been looking for a way to disable the reset button but everything I find does not make sense because I’m pretty new to scripting. Does anyone have the script to disable the reset button and can you also tell me where to put the script? Thanks!

1 Like

simply do this in a localscript.

local StarterGui = game:GetService(“StarterGui”)
StarterGui:SetCore(“ResetButtonCallback”,false)

13 Likes