of     1   

RealFrantic
#228352642Saturday, December 02, 2017 11:37 PM GMT

Hey I have a customize button, and when you click it, it brings up the customization screen gui I made this normal script under a text button, under a screen gui, under startergui gui = game.StarterGui.Customize-- customize is the name of the screen gui I want to bring up gui.Enabled = false function onClicked(gui) gui.Enabled = true end script.Parent.MouseButton1Click:connect(onClicked) It doesn't seem to work though, can anyone tell me why?
TurtlesMelons
#228352793Saturday, December 02, 2017 11:41 PM GMT

If I'm not mistaken you can't use Click on GUIs, try MouseButton1Down
V_PN
#228352818Saturday, December 02, 2017 11:42 PM GMT

If the script is in the textbutton, which is in the screengui, and you're disabling the script. Then that stops all the events at once. Doesnt it? #code print('0')
RealFrantic
#228352831Saturday, December 02, 2017 11:42 PM GMT

Its a text button gui, sorry if I didn't mention that
Luo_Basics
#228352834Saturday, December 02, 2017 11:42 PM GMT

No, you've got it mixed up. You can't use Button1Click on the actual mouse object, but on gui buttons MouseButton1Click works fine.
RealFrantic
#228352976Saturday, December 02, 2017 11:46 PM GMT

I disabled the customize screen gui, since thats the customization gui. I dont want it to be on the screen until the text button is clicked, thats why its not enabled until its clicked. Which doesn't seem to work. Also this is not a local script, could that be a problem?
RealFrantic
#228353493Saturday, December 02, 2017 11:57 PM GMT

?
V_PN
#228353597Saturday, December 02, 2017 11:59 PM GMT

Try using a local script, server scripts tend to not work on client side stuff. #code print('0')
RealFrantic
#228353886Sunday, December 03, 2017 12:05 AM GMT

Local script didn't seem to make a difference, although it said gui was nil so I got rid of that local variable. This is my current script now game.StarterGui.Customize.Enabled = false function onClicked(gui) game.StarterGui.Customize.Enabled = true end script.Parent.MouseButton1Click:connect(onClicked)
V_PN
#228354230Sunday, December 03, 2017 12:13 AM GMT

game.StarterGui.Customize.Enabled = false script.Parent.MouseButton1Click:connect(function() game.StarterGui.Customize.Enabled = true end) #code print(' 0 ')
RealFrantic
#228354435Sunday, December 03, 2017 12:17 AM GMT

Weird, that script looks like its supposed to work, but it did not. I even tried changing it to game.StarterGui.Customize.Enabled = false script.Parent.MouseButton1Down:connect(function() game.StarterGui.Customize.Enabled = true end) But even that would not work. Also tried in a normal script rather than a local one and still nothing ;l
V_PN
#228354575Sunday, December 03, 2017 12:20 AM GMT

Is this script inside the 'Customize' GUI? print(' #RAP ')
Denny9876
#228354624Sunday, December 03, 2017 12:21 AM GMT

You're using StarterGui, that's why. StarterGui takes effect on everyone but DOESN'T effect them until the player respawn. Use a localscript, put this in StarterGui, and use this script : game.Players.LocalPlayer.PlayerGui.Customize.Enabled = false script.Parent.MouseButton1Down:connect(function() game.Players.LocalPlayer.PlayerGui.Customize.Enabled = true end)
RealFrantic
#228354714Sunday, December 03, 2017 12:23 AM GMT

I have 2 screen guis under StarterGui The first one is "Customize" Its the the one that we want to enable The second one is "maingui" Its where the text button called "Customize Button" is located and in there is the script we are working on. So, the answer to your question is no.
V_PN
#228354717Sunday, December 03, 2017 12:23 AM GMT

That flew right over my head ^ #code while true do end
RealFrantic
#228355025Sunday, December 03, 2017 12:30 AM GMT

@Denny When you say put under StarterGui, do you mean just to put in there, or under one of the screen guis. Because when its under StarterGui, the Customize screen gui is not visible, but does not become visible when the textbutton is clicked either. When it is under maingui the customize screen gui is visible, which is not our goal since we wont it to become visible when the textbutton is clicked.
Denny9876
#228355216Sunday, December 03, 2017 12:35 AM GMT

Put the localscript in the button, since your function has "script.Parent" in it. The customize gui should be disabled on game run and once you click the button, it should become visible.
RealFrantic
#228355325Sunday, December 03, 2017 12:38 AM GMT

The script does not work, I think this is why: [Error] -Customize is not a valid member of PlayerGui
Denny9876
#228355484Sunday, December 03, 2017 12:42 AM GMT

Strange, you do have a ScreenGui named "Customize" in the StarterGui right? It must be named exactly like "Customize" in case you put "customize" or some typo in the ScreenGui. Otherwise you didn't add it. Also try putting wait() on the first line in the script. Maybe that'll give the game time to load the GUI before the script runs.
RealFrantic
#228355569Sunday, December 03, 2017 12:44 AM GMT

Yeah, the wait worked. Thanks so much for your help ;D
Denny9876
#228355620Sunday, December 03, 2017 12:45 AM GMT

No problem. :D

    of     1