Can't load three GUIs one at a time?
I am trying to disable two GUIs and only load one.. when a button is clicked the previously loaded GUI will disappear/disable and then one other GUI will appear, the same will happen to this one as well, a button clicked will disable that GUI and activate another, then that GUI will disappear and none will be there. The problem I'm having is none of the GUIs disappear whatsoever, they're all still there.
01 | local discla = game.StarterGui.Disclaimer.Disclaimer |
02 | local Main = game.StarterGui.MainMenu.MainMenu |
03 | local Note = game.StarterGui.NoteFromJoey.NoteFromJoey |
10 | local button = game.StarterGui.Disclaimer.Disclaimer.TextButton |
12 | button.MouseButton 1 Click:Connect( function (plr) |
18 | button.MouseButton 1 Click:Connect( function (plr) |
23 | local play = game.StarterGui.MainMenu.MainMenu.Menu.PlayBTN |
24 | local Quit = game.StarterGui.MainMenu.MainMenu.Menu.Quit |
27 | play.MouseButton 1 Click:Connect( function () |
32 | Quit.MouseButton 1 Click:Connect( function () |
33 | game.Players.LocalPlayer:kick( "Quit Game" ) |
36 | local old = game.StarterGui.NoteFromJoey.NoteFromJoey.Pages.OldPage |
38 | old.MouseButton 1 Click:Connect( function () |
I am VERY new to coding, so I most likely did something wrong, but of course, I do not know what. I have three folders, each of them has its own GUI in it.