I’m trying to make a part that will disable the “reset” button when it is clicked, and then enable it again after 27 seconds. I also only need it to only be clickable once, and then never again. The part is labeled “KEY” and is a child of Workspace.
Here is a LocalScript which is a child of StarterGui:
local StarterGui = game:GetService('StarterGui')
wait()
StarterGui:SetCore("ResetButtonCallback",false)
The script above will currently disable the reset button forever once a player joins.