Answered by
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:
02 | local MapStorage = workspace.MapStorage |
03 | local IntermissionTime = 15 |
04 | local Players = game.Players:GetChildren() |
05 | local Status = game.ReplicatedStorage.StatusValue |
06 | local RoundInProgress = false |
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 |
16 | if i = = 0 then startRound = true end |
18 | if startRound then break end |
19 | elseif not RoundInProgress and #Players < 2 then |
20 | Status.Value = "2 or more players are required to start" |