Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
-2

How To make an "20 Sec to next round" And do Se we getting tp in to the game? [closed]

Asked by 10 years ago

I need help with it to my Disaster Game

Closed as Not Constructive by evaera

This question has been closed because it is not constructive to others or the asker. Most commonly, questions that are requests with no attempt from the asker to solve their problem will fall into this category.

Why was this question closed?

1 answer

Log in to vote
0
Answered by 10 years ago
--//** This will countdown from 20.

h = Instance.new("Hint", game.Workspace)

for i= 20,0, -1 do
    h.Text = "Round will begin in "..i.." seconds"
    wait(1)
end
wait(1)
target = CFrame.new(0, 0, 0) --//** Change the numbers to the position you want
for i, player in ipairs(game.Players:GetChildren()) do
    player.Character.Torso.CFrame = target + Vector3.new(0, i * 5, 0)

end
Ad