You can write your topic however you want, but you need to answer these questions:
What do you want to achieve? i want to make it so players can’t reset their character
What is the issue? there was an error saying SetCore: ResetButtonCallback has not been registered by the CoreScripts
this is what’s happening
that’s what i expected
What solutions have you tried so far? i found one on the devforums but it didn’t work
local StarterGui = game:GetService("StarterGui")
repeat
local sucess,err = pcall(function()
StarterGui:SetCore("ResetButtonCallback", false)
end)
if sucess and not err then break end
task.wait() -- Just to make sure it doesn't freeze their game.
until false