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

GUI Server script for TUTORIAL only working a tiny bit?

Asked by 5 years ago
Edited 5 years ago

Hello, I am trying to make a tutorial for a game, but it is not working? Only the first GUI appears but it doesn't disappear and no other GUIs disappear. This is in Workspace and it is a server script.

01-- Defining the variables
02local Bridge = game.StarterGui.ScreenGui.one
03local Danger = game.StarterGui.ScreenGui.two
04local Hen = game.StarterGui.ScreenGui.three
05-- Code
06wait(0.1)
07Bridge.Visible = true
08wait(5)
09Bridge.Visible = false
10Danger.Visible = true
11wait(5)
12Danger.Visible = false
13Hen.Visible = true
14wait(5)
15Hen.Visible = false
0
If you took this from a model in the catalog please send the link so I can look at the guis too. Also, are you sure the GUIs are in the right place? Torren_Mr 334 — 5y
0
They are in the same place, and no, I made the script myself. squidiskool 208 — 5y

2 answers

Log in to vote
0
Answered by
Torren_Mr 334 Moderation Voter
5 years ago
Edited 5 years ago

Alright. As all the things in StarterGui get placed to players personal Gui folder you need to include the script in the ScreenGui. You also need to change the variables. Here is the script.

01-- Defining the variables
02local Bridge = script.Parent.one --Changed it to find it from the parent.
03local Danger = script.Parent.two
04local Hen = script.Parent.three
05-- Code
06wait(0.1)
07Bridge.Visible = true
08wait(5)
09Bridge.Visible = false
10Danger.Visible = true
11wait(5)
12Danger.Visible = false
13Hen.Visible = true
14wait(5)
15Hen.Visible = false

So you will have to replace the current script with the one above and move it to "ScreenGui"

1
Thanks! Now it's working! squidiskool 208 — 5y
0
Please don't forget to accept this answer and upvote please :) Torren_Mr 334 — 5y
Ad
Log in to vote
1
Answered by 5 years ago
Edited 5 years ago

You should put the script in the StarterGui to make it simpler for the Local variables. like so... It was possibly the placement itself, but from what I did it seems to work perfectly so I suggest when trying to do something like this put the ServerScript in the Frames Parent (a.k.a ScreenGui) If this helped you please upvote!

----[|Script|]----

01local Bridge = script.Parent.one
02local Danger = script.Parent.two
03local Hen = script.Parent.three
04 
05wait(0.1)
06Bridge.Visible = true
07wait(5)
08Bridge.Visible = false
09    Danger.Visible = true
10    wait(5)
11    Danger.Visible = false
12        Hen.Visible = true
13        wait(5)
14        Hen.Visible = false

Answer this question