of     1   

Cheeso135
#139403391Sunday, July 06, 2014 7:46 AM GMT

How would I make it so that when a GUI is clicked, another GUI opens, and when it is clicked again, the GUI disappears? Thanks in advance, Cheeso
Cheeso135
#139403710Sunday, July 06, 2014 7:53 AM GMT

b1
AnonyAnonymous
#139403762Sunday, July 06, 2014 7:54 AM GMT

Let's assume that this is perhaps something such as a TextButton and that the script is inside the GUI. ------------------- GUIClicked = false script.Parent.MouseButton1Click:connect(function() if GUIClicked == false then --GUI Code Here GUIClicked = true elseif GUIClicked == true then script.Parent.Parent = nil end end)
Cheeso135
#139403883Sunday, July 06, 2014 7:56 AM GMT

I have a GUI button at the top of my screen and a text button inside of it. So I insert that script and it should work?
Cheeso135
#139404324Sunday, July 06, 2014 8:04 AM GMT

And erm….Just out of curiosity, the GUI that is being opened? The scrolling feature is fine and I inserted a TextLabel but anything I write goes in the middle. How do I make the text start in the top right corner and go left to right until it reaches the bottom?
smiley599
#139404416Sunday, July 06, 2014 8:06 AM GMT

Scroll to the bottom of the TextLabel's properties and you'll see XAlignment and YAlignment or something. Make them Left and Up, rather than Centre.
Cheeso135
#139404441Sunday, July 06, 2014 8:07 AM GMT

Thanks Smiley :)
Cheeso135
#139404602Sunday, July 06, 2014 8:10 AM GMT

Uh oh. Hang on. Now when I write stuff in, it goes off of the scrolling frame? And there is no button slider? Do I have to make a new Label for every line?
smiley599
#139404711Sunday, July 06, 2014 8:11 AM GMT

I think you need to make sure TextWrapped is true.
Cheeso135
#139404779Sunday, July 06, 2014 8:12 AM GMT

Oh erm. Probably….lol thanks again
Cheeso135
#139406097Sunday, July 06, 2014 8:38 AM GMT

How do I put a text button at the bottom of a scrolling frame? I can position it right but it looks like it is behind the frame?
Cheeso135
#139406237Sunday, July 06, 2014 8:41 AM GMT

Ohhhh. Do I need to put a TextLabel and then text button inside of it?
Cheeso135
#139406364Sunday, July 06, 2014 8:44 AM GMT

Nope nvm does not work.
Cheeso135
#139406477Sunday, July 06, 2014 8:46 AM GMT

b1
Cheeso135
#139408526Sunday, July 06, 2014 9:34 AM GMT

b2
Cheeso135
#139408617Sunday, July 06, 2014 9:37 AM GMT

b3
Cheeso135
#139408741Sunday, July 06, 2014 9:40 AM GMT

b4
Cheeso135
#139409825Sunday, July 06, 2014 10:08 AM GMT

b5
AnonyAnonymous
#139409910Sunday, July 06, 2014 10:10 AM GMT

Yes, insert the script and inform me of the result.
Cheeso135
#139410494Sunday, July 06, 2014 10:28 AM GMT

SO I have a scrolling frame with info in it. That works fine. I need a close button. So when I put a text button with a script on the scrolling frame, it appears behind it
AnonyAnonymous
#139410698Sunday, July 06, 2014 10:33 AM GMT

Change the ZIndex property.

    of     1