of     1   

Udoxas
#144439333Sunday, August 24, 2014 10:58 PM GMT

that would teleport all players to a certain brick in a certain amount of time? I have an idea on how to do this, but the timer would be different for every player. I just need a script that would have a timer that is the same for all players, and teleports them to a brick. I'm not fancy with scripting so, if this is uber easy I am ashamed
communityescape
#144440363Sunday, August 24, 2014 11:10 PM GMT

Would you pay? I need sound money ;-;
Udoxas
#144440809Sunday, August 24, 2014 11:15 PM GMT

@training If you think I'll pay get out
Kodran
#144440971Sunday, August 24, 2014 11:17 PM GMT

m = Instance.new("Message", workspace) t = 100 i = 0 repeat m.Text = i wait(1) until i >= t for i, v in pairs(game.Players:GetPlayers()) do v.Character:MoveTo(Vector3.new(0, 0, 0)) end
Kodran
#144441047Sunday, August 24, 2014 11:18 PM GMT

Oops, couple mistakes. m = Instance.new("Message", workspace) t = 100 repeat t = t-1 m.Text = t wait(1) until t <= 0 for i, v in pairs(game.Players:GetPlayers()) do v.Character:MoveTo(Vector3.new(0, 0, 0)) end
Udoxas
#144442934Sunday, August 24, 2014 11:45 PM GMT

Thanks, but does it loop? I've used a free model while I wait for a better script, and it doesn't loop.

    of     1