Hello I want to make an easy round system,
I did most of it but I cant figure out how to run for loops again
Here is the script :
local RoundTime = 5
local Intermission = 5
local TextButton = script.Parent
while true do
while Intermission > 0 do
TextButton.Text = "Round Staring In: " .. Intermission
wait(1)
Intermission = Intermission - 1
end
TextButton.Text = "Round Starting"
wait(1)
while RoundTime > 0 do
TextButton.Text = "Remaining: " .. RoundTime
wait(1)
RoundTime = RoundTime - 1
end
TextButton.Text = "Round Ending"
wait(1)
end
when I play the game, after it counts down RoundTime and Intermission it repeats, Round Starting and Round Ending