How can I make a intermission script?

I have the timer working now, how can I script it so it teleports the player?

I can’t help you with that since you have to choose the position yourself.

for _,plr in pairs (game.Players:GetPlayers()) do
plr.Character.HumanoidRootPart.Position = Vector3.new(X,Y,Z) --Choose this position
end

Alternatively you could do:
plr.Character.HumanoidRootPart.Position = partyouwantplayerstoteleportto.Position

local IntermissionTime = 10

for i = IntermissionTime,0-1 do

wait(1)

-- IF U HAVE A TEXT SET THE TEXT HERE EXAMPLE: TextLabel.Text = "Intermission: "..i

end

-- This part will run after the countdown is done