How to make it so that when you click a textbutton inside a GUI, then have another GUI appear?
I am making a anti exploit service and I have 2 GUIs for it, one of them is the GUI where you report players (visible is set to false), that also sends the reports to a trello board. And the other is a GUI with a imagelabel (visible is set to true), and a TextButton inside it. I tried to make a script that makes it so that when someone clicks the invisible TextButton that is around the logo imagelabel, it makes the ButtonGui Dissappear and the Report GUI appear. The name of the textbutton is "create" btw. The script is placed inside the frame inside the ButtonGUI with the imagelabel, the textbutton, and the script. Also, the Report GUI is "ScreenGui" btw. Am I doing something wrong?
The script I have is:
1 | script.Parent.Frame.create.MouseButton 1 Click:connect( function () |
2 | game.StarterGui.ScreenGui.Frame.Visible = true |
3 | game.StarterGui.ButtonGui.Frame.Visible = false |