To get this effect, you’ll need to switch what’s in the spawn function. I recommend using task.spawn because it’s better
function round.Start_Match(length)
task.spawn(function()
for i = length,0,-1 do
round.Change_Info(to_MS(i))
task.wait(1)
end
end)
print("Hello world")
end
The reason to this is because the loop will yield the code until it’s done, so you want to create a different thread to do that code while you can run other things at the same time.