time delay to teleport players.?
Asked by
5 years ago Edited 5 years ago
I want to create a button that when someone presses, all players are teleported to the x, y, z area
the problem is that this script teleports the player that clicked first and only after a few seconds, other players (tested on LocalServer in Roblox Studio
script:
01 | local teleporte = script.Parent |
06 | local p = game.Players:GetChildren() |
08 | p [ i ] .Character:MoveTo(Vector 3. new(- 55.831 , 11.008 , 183.894 )) |
10 | script.Parent.ClickDetector.MouseClick:connect(onClicked) |