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 |
02 | local Bridge = game.StarterGui.ScreenGui.one |
03 | local Danger = game.StarterGui.ScreenGui.two |
04 | local Hen = game.StarterGui.ScreenGui.three |
05 | -- Code |
06 | wait( 0.1 ) |
07 | Bridge.Visible = true |
08 | wait( 5 ) |
09 | Bridge.Visible = false |
10 | Danger.Visible = true |
11 | wait( 5 ) |
12 | Danger.Visible = false |
13 | Hen.Visible = true |
14 | wait( 5 ) |
15 | Hen.Visible = false |
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 |
02 | local Bridge = script.Parent.one --Changed it to find it from the parent. |
03 | local Danger = script.Parent.two |
04 | local Hen = script.Parent.three |
05 | -- Code |
06 | wait( 0.1 ) |
07 | Bridge.Visible = true |
08 | wait( 5 ) |
09 | Bridge.Visible = false |
10 | Danger.Visible = true |
11 | wait( 5 ) |
12 | Danger.Visible = false |
13 | Hen.Visible = true |
14 | wait( 5 ) |
15 | Hen.Visible = false |
So you will have to replace the current script with the one above and move it to "ScreenGui"
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|]----
01 | local Bridge = script.Parent.one |
02 | local Danger = script.Parent.two |
03 | local Hen = script.Parent.three |
04 |
05 | wait( 0.1 ) |
06 | Bridge.Visible = true |
07 | wait( 5 ) |
08 | Bridge.Visible = false |
09 | Danger.Visible = true |
10 | wait( 5 ) |
11 | Danger.Visible = false |
12 | Hen.Visible = true |
13 | wait( 5 ) |
14 | Hen.Visible = false |