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

Why does my GUI text not change to the intermission time?

Asked by 7 years ago

I tried to make a minigame intermission script but it isn't working, my script is down below.

01--// Variables
02local MapStorage = workspace.MapStorage
03local IntermissionTime = 15
04local Players = game.Players:GetChildren()
05local Status = game.ReplicatedStorage.StatusValue.Value
06local RoundInProgress = false
07 
08--// Intermission
09while wait(1) do
10    if not RoundInProgress and #Players > 2 then
11        for i = IntermissionTime, 0, -1 do
12            Status = "Intermission: ".. i
13        end
14    elseif not RoundInProgress and #Players < 2 then
15        Status = "2 or more players are required to start"
16    end
17end

I also have a script in the gui which sets the text to the status value, that is working fine so I narrowed this script down to the problem.

1 answer

Log in to vote
0
Answered by
RayCurse 1518 Moderation Voter
7 years ago
Edited 7 years ago

First of all, your status variable needs to be the instance of the StringValue itself and not the value because you need to change the value later on. Second, you should add a wait() around line thirteen where the script is counting down the intermission. Third, your script needs a way to break out of the for loop just in case a player leaves while the game is counting down. Finally, the script should probably be able to break out of the while loop as well when the game starts. This would make the script look like this:

01--// Variables
02local MapStorage = workspace.MapStorage
03local IntermissionTime = 15
04local Players = game.Players:GetChildren()
05local Status = game.ReplicatedStorage.StatusValue
06local RoundInProgress = false
07 
08--// Intermission
09while wait(1) do
10    if not RoundInProgress and #Players > 2 then
11        local startRound = false
12        for i = IntermissionTime, 0, -1 do
13            if #Players < 2 then break end
14            Status.Value = "Intermission: ".. i
15            wait(1)
View all 22 lines...
0
It still doesn't work when the game has more than two people cmgtotalyawesome 1418 — 7y
0
Do you want to start the game when there are two or more players or when there are more than two players? RayCurse 1518 — 7y
Ad

Answer this question