So I don't know how to make it, any ideas?
Add a button in the gui, then add a localscript in the button. This goes in the localscript:
local guiToDisable = script.Parent.Parent --this is a directory I just made up, change it if needed function leftClick() print("Clicked.") guiToDisable.Visible = false end script.Parent.MouseButton1Click:Connect(leftClick)
Hope this helps, happy holidays! :D