You can write your topic however you want, but you need to answer these questions:
I want to close one GUI, and the button is all fine and all, but my close button closes all GUI’s. How can I make it so that the text button only closes one GUI?
The button closes one GUI, not all of them.
I tried changing the script at bit, but it still didn’t work.
Hello, BenzGamingz.
I can see, you are already getting help, but let me just give you my theory, to why it doesn’t work for you. Since you didn’t provide us, with much information, I can only guess as to what is wrong.
Now with that said, I think your problem may be, that you’re actually making the wrong “gui” invisible. Whenever you set .Visible = false, on fx a frame, you also set everything inside that frame, to be invisible. Therefore, if you don’t want whatever is inside the frame, to also go invisible, you’ll need to either:
A: Change ur script, so u only put .Visible = false for the stuff, inside the frame, that you want invisible. B: You take out the stuff, that is currently inside the frame, that you’re setting to .Visible = false, and that way, those frames, textlabels etc. won’t also go invisible, because their visibility is no longer dependent on their Parents visibility.
Hope this helps, else just reply to this answer, and I will gladly help you some more