Help with Intermission Script for Minigame

I am trying to make a intermission for the script and it weird the intermission is going down by 1 but then the text changed I got a video explaining the problem

and here is the script

local ReplicatedStorage = game:GetService("ReplicatedStorage")
local ServerStorage = game:GetService("ServerStorage")
local Maps = ServerStorage:WaitForChild("Maps")
local Status = ReplicatedStorage:WaitForChild("Status")
local Intermission = 15 -- This is the time in the lobby
local GameTime = 180 --The game time till it ends
local ParticipationReward = 10 --The reward that each participating player gets
local WinnerReward = 20 --This reward is only rewarded to the winner of each match
local PlayerAmount = 2 --This indicates how many players are suppost to be for the game to begain
local Loadingscreen = ReplicatedStorage:WaitForChild("LoadingScreen")




while true do
	
	Status.Value = "Waiting for "..PlayerAmount.." to start the game!"
	
	repeat wait() until game.Players.NumPlayers >= 1

	for i = Intermission,0,-1 do
		
		Status.Value = "Intermission: "..i.."!"
		
		wait(2)
		Status.Value = "Choosing map!"
		wait(2)
		Status.Value = "Map has been choosen teleporting players now"
		end
		
		
end

each time, this would repeat these text. Therefore meaning that after 6 seconds 1 second would go down and the text would repeat this. To fix this, simply add an if statement like this:

for i = Intermission,0,-1 do
Status.Value = "Intermission: "..i.."!"
if i == 0 then
Status.Value = "Choosing Map!"
wait(2)
Status.Value = "Map has been chosen teleporting players now"
end
wait(1)
end

Thanks I really appreciate it thanks for solving my problem

Or you can try this way too…

for i = Intermission,0,-1 do -- Does countdown 
Status.Value = "Intermission: "..i.."!"
wait(1)
end

-- When countdown ends.. It will show this.
 Status.Value = "Choosing Map!"
    wait(2)
    Status.Value = "Map has been chosen teleporting players now"

Ok Thanks for the advice for the script I really do appreciate it :+1:t2: