GUI not turning invisible or visible?
Okay, so what I am trying to do in my game is make a GUI turn invisible if a variable called inCutscene = true, and turn back visible if it is false. I currently have an intro GUI working which sets the inCutscene variable to true and false at the appropriate time, except it won't turn the other GUI, called updateButton, true or false. Here is a screenshot of my current setup:
http://gyazo.com/ec8de49ad48c64efbdf34438a3305bf1
Now I will show you the code for the intro GUI which should turn inCutscene to true/false:
01 | updateInfo = script.Parent.updateInfo |
03 | SS = game.ServerStorage |
04 | Player = script.Parent.Parent.Parent.Parent.Parent |
05 | cutscene = game.StarterGui.UIconfig.inCutscene |
08 | if SS:FindFirstChild(Player.Name) then |
09 | script.Parent.Parent.Visible = false |
14 | updateInfo.Visible = false |
17 | Intro.TextTransparency = Intro.TextTransparency - 0.1 |
22 | Intro.TextTransparency = Intro.TextTransparency + 0.1 |
27 | Intro.TextTransparency = Intro.TextTransparency - 0.1 |
29 | updateInfo.Visible = true |
32 | updateInfo.TextTransparency = updateInfo.TextTransparency - 0.1 |
37 | updateInfo.TextTransparency = updateInfo.TextTransparency + 0.1 |
41 | Intro.TextTransparency = Intro.TextTransparency + 0.1 |
43 | updateInfo.Visible = false |
47 | Intro.BackgroundTransparency = Intro.BackgroundTransparency + 0.1 |
51 | Intro.Parent.BackgroundTransparency = Intro.Parent.BackgroundTransparency + 0.1 |
53 | cutscene.Value = false |
54 | script.Parent.Parent.Visible = false |
55 | A = Instance.new( "BoolValue" ,SS) |
Now here is the code of the GUI which I want to turn visible when inCutscene = false and invisible if inCutscene = true:
02 | inCutscene = game.StarterGui.UIconfig.inCutscene |
04 | if inCutscene.Value = = true then |
05 | button.Visible = false |
07 | button.Parent.Visible = false |
08 | button.Parent.Active = false |
12 | button.Parent.Visible = true |
13 | button.Parent.Active = true |
19 | script.Parent.MouseButton 1 Click:connect( function (Clicked) |
20 | if Debounce = = false and inCutscene.Value = = false then |
22 | print ( "Button clicked." ) |
Thank you for reading! I hope we can find an answer :)