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

Finish line script?

Asked by
iNicklas 215 Moderation Voter
8 years ago

There is 2 players needed,

first problem is. I can't see it changing, but the other player can.

second is, i want when a player touches a part called finishline, they'll get teleported back to spawn

finishline brick.name = finishline btw

p = game.Players:GetChildren()

while true do
wait(.1)
if #p > 1 then
script.Parent.Text = "Starting."
wait(.25)
script.Parent.Text = "Starting.."
wait(.25)
script.Parent.Text = "Starting..."
wait(.25)
script.Parent.Text = "Starting.."
wait(.25)
script.Parent.Text = "Starting."
wait(.25)
script.Parent.Text = "Starting.."
wait(.25)
script.Parent.Text = "Starting..."
wait(5)
script.Parent.Text="Gotta go fast"
elseif #p < 1 then
script.Parent.Text = "1 more player is needed"
end
end
0
Is it a LocalScript? Btw, the ''1 more player is needed'' wont ever show up, because its checking if the player count is less than 1 (which cant happen). drew1017 330 — 8y
0
oh iNicklas 215 — 8y

Answer this question