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

time delay to teleport players.?

Asked by
lytew 99
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:

01local teleporte = script.Parent
02 
03 
04function onClicked()
05 
06local p = game.Players:GetChildren()
07for i = 1, #p do
08p[i].Character:MoveTo(Vector3.new(-55.831, 11.008, 183.894))
09end
10script.Parent.ClickDetector.MouseClick:connect(onClicked)

1 answer

Log in to vote
1
Answered by
synkrio 281 Moderation Voter
5 years ago

I don't really know what's wrong with your code but maybe you can try this

1local teleporte = script.Parent
2 
3function onClicked()
4for i,v in pairs(game.Players:GetChildren())do
5    v.Character:MoveTo(Vector.new(-55.831, 11.008, 183.894))
6end
7end
8script.Parent.ClickDetector.MouseClick:Connect(onClicked)
0
interesting guy, I'll try, thanks lytew 99 — 5y
0
He probably forgot an end SoftlockedUnderZero 668 — 5y
0
oh he did. I didn't notice that yesterday synkrio 281 — 5y
Ad

Answer this question