Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-2

GUI not turning invisible or visible?

Asked by
novipak 70
10 years ago

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:

01updateInfo = script.Parent.updateInfo
02Intro = script.Parent
03SS = game.ServerStorage
04Player = script.Parent.Parent.Parent.Parent.Parent
05cutscene = game.StarterGui.UIconfig.inCutscene
06 
07 
08if SS:FindFirstChild(Player.Name) then
09    script.Parent.Parent.Visible = false
10    script:Destroy()
11else
12    cutscene.Value = true
13    Intro.Visible = true
14    updateInfo.Visible = false
15    for i=1, 10 do
View all 57 lines...

Now here is the code of the GUI which I want to turn visible when inCutscene = false and invisible if inCutscene = true:

01button = script.Parent
02inCutscene=game.StarterGui.UIconfig.inCutscene
03--Check if we're in a cutscene
04if inCutscene.Value == true then
05    button.Visible = false
06    button.Active = false
07    button.Parent.Visible = false
08    button.Parent.Active = false
09else
10    button.Visible = true
11    button.Active = true
12    button.Parent.Visible = true
13    button.Parent.Active = true
14end
15--Debounce
View all 26 lines...

Thank you for reading! I hope we can find an answer :)

0
Update: I attempted to put the script which will change the boolValue into the boolValue itself. The button now cannot be clicked during cutscenes but is still visible. novipak 70 — 10y

Answer this question