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:
1 | local gui 1 = -- first gui location |
2 | local gui 2 = -- second gui location |
3 | script.MouseButton 1 Click:Connect( function () -- When button clicked |
4 | gui 1. Enabled = false -- Disable gui1 |
5 | gui 2. Enabled = true -- Enable gui2 |
6 | end ) |