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

All Of My Script Is Correct But Its Not Running For Some Reason?

Asked by 4 years ago
Edited 4 years ago

Hi This Straight Of Pisses Me Off Cause There is No Errors And The Script Is Not Running. And The Script Is Activated. This Is In A Script Please Tell Me What I Can Do For This Thanks!

01if game.Workspace.GameStatus.GameProgress == "IN_GAME" then
02    print("why does nothing run for me!")
03    wait(1)
04    script.Parent.Monitor.effect:Play()
05    script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Well Hello There Welcome To Untitled Game! :D"
06    wait(2)
07    script.Parent.Monitor.effect:Play()
08    script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Im Going To Give You A Rundown If You Have Not Played This Before"
09    wait(2)
10    script.Parent.Monitor.effect:Play()
11    script.Parent.Monitor.SurfaceGui.TextLabel.Text = "So Pay Close Attetion If You Want To Get Out Alive."
12    wait(2)
13    script.Parent.Monitor.effect:Play()
14    script.Parent.Monitor.SurfaceGui.TextLabel.Text = "1.You Are Given A Time Limit To Beat The Room."
15    wait(2)
View all 31 lines...
0
What type of script is this in? Is it in a loop? UraniumBanana5 33 — 4y
0
Its Not In a Loop And Its A Script CallMe_Axis 63 — 4y
0
whats the output raid6n 2196 — 4y

1 answer

Log in to vote
0
Answered by 4 years ago

I hope this helps :D I added a loop, and .Value to GameProgress

01while true do
02    if game.Workspace.GameStatus.GameProgress.Value == "IN_GAME" then
03        print("why does nothing run for me!")
04        wait(1)
05        script.Parent.Monitor.effect:Play()
06        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Well Hello There Welcome To Untitled Game! :D"
07        wait(2)
08        script.Parent.Monitor.effect:Play()
09        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Im Going To Give You A Rundown If You Have Not Played This Before"
10        wait(2)
11        script.Parent.Monitor.effect:Play()
12        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "So Pay Close Attetion If You Want To Get Out Alive."
13        wait(2)
14        script.Parent.Monitor.effect:Play()
15        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "1.You Are Given A Time Limit To Beat The Room."
View all 34 lines...
0
Still Does Not Work Thanks For The Help. CallMe_Axis 63 — 4y
Ad

Answer this question