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!


if game.Workspace.GameStatus.GameProgress == "IN_GAME" then print("why does nothing run for me!") wait(1) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Well Hello There Welcome To Untitled Game! :D" wait(2) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Im Going To Give You A Rundown If You Have Not Played This Before" wait(2) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "So Pay Close Attetion If You Want To Get Out Alive." wait(2) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "1.You Are Given A Time Limit To Beat The Room." wait(2) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "2.The Time Limit May Change Due To The Diffuclty You Set." wait(2) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "3.Don't Overthink Puzzles There Are Simple For Example || = 14 ???? Puzzles Can Get Harder Due To Diffculty." wait(2) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "4.Try Interacting With Objects. They May Have Something Useful To Help You Escape." wait(2) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "5.Item Postions Generate Randomly. So A Things Postion Wont Stay The Same." wait(2) script.Parent.Monitor.effect:Play() script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Thanks You For Participating in My Quick Rundown" wait(2) end
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

while true do
    if game.Workspace.GameStatus.GameProgress.Value == "IN_GAME" then
        print("why does nothing run for me!")
        wait(1)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Well Hello There Welcome To Untitled Game! :D"
        wait(2)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Im Going To Give You A Rundown If You Have Not Played This Before"
        wait(2)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "So Pay Close Attetion If You Want To Get Out Alive."
        wait(2)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "1.You Are Given A Time Limit To Beat The Room."
        wait(2)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "2.The Time Limit May Change Due To The Diffuclty You Set."
        wait(2)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "3.Don't Overthink Puzzles There Are Simple For Example || = 14 ???? Puzzles Can Get Harder Due To Diffculty." 
        wait(2)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "4.Try Interacting With Objects. They May Have Something Useful To Help You Escape."
        wait(2)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "5.Item Postions Generate Randomly. So A Things Postion Wont Stay The Same."
        wait(2)
        script.Parent.Monitor.effect:Play()
        script.Parent.Monitor.SurfaceGui.TextLabel.Text = "Thanks You For Participating in My Quick Rundown"
        wait(2)
    end
    wait()
end
0
Still Does Not Work Thanks For The Help. CallMe_Axis 63 — 4y
Ad

Answer this question