I don't find a gui script , when i press button disable a gui and enable other gui
You didn't give any information or a script so this is how it's usually done:
local gui1 = -- first gui location local gui2 = -- second gui location script.MouseButton1Click:Connect(function() -- When button clicked gui1.Enabled = false -- Disable gui1 gui2.Enabled = true -- Enable gui2 end)