its supposed to be a dot
starterGui.SetCore(“ResetButtonCallback”, false)
instead of
starterGui:SetCore(“ResetButtonCallback”, false)
1 Like
The problem I was facing was something on roblox’s end. It has been resolved now; no errors within console.
...
Also; starterGui.SetCore(“ResetButtonCallback”, false)
wouldn’t work because you’re not adding the self
parameter which of being starterGui
. And that would look as such:
starterGui.SetCore(starterGui, "ResetButtonCallback", false)
Using the .
would be pointless because the :
has the same effect, and the .
has to have a self
parameter which seems like a hacky way to go about disabling resetting. Though both do certainly work.
1 Like