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

Teleporting script only teleporting one player, instead of certain ones?

Asked by 5 years ago

My teleporting script is suppose to teleport everyone, but it's only teleporting the player who clicked. Not sure why its doing this, is there an error?

01local remote = game.ReplicatedStorage.StartEvent
02remote.OnServerEvent:Connect(function(player)
03    for i, v in pairs(game.Players:GetPlayers()) do
04        local bool = v:FindFirstChildOfClass("BoolValue")
05        local frame = v.PlayerGui.ActiveLobbys.Frame.Frame.Frame
06        local player2 = frame.PlayerName.Text
07        local gameplaceid = 3313994275
08        local Player = player
09        local PlayersToTeleport = {}
10        local AlreadyInTable = false
11 
12            for _,OtherPlayer in next,PlayersToTeleport do
13                if OtherPlayer == Player then
14                AlreadyInTable = true
15            end
View all 26 lines...

1 answer

Log in to vote
1
Answered by
Tokyo7979 131
5 years ago
Edited 5 years ago

Here this should help:

1local TeleportService = game:GetService("TeleportService")
2local Reserve = TeleportService:ReserveServer(3313994275)
3for i,v in pairs(game.Players:GetChildren()) do
4        table.insert(PlayerToTeleport,i,v.Name)
5 end
6for i,v in pairs(PlayersToTeleport) do
7    TeleportService:TeleportToPrivateServer(gameplaceid, Reserve, PlayerToTeleport[v])
8end

You should've called the TeleportService and the Reserve variables at the start of the script to avoid changing lines etc. What I did here is that I looked how much player's there where, and teleported each player 1 by 1 in a for i,v loop.

0
Unable to cast value to objects line 9? zandefear4 90 — 5y
0
Edited the showcase in my response. Hopefully this works..? Tokyo7979 131 — 5y
0
I already changed it to work, but Ill try this. zandefear4 90 — 5y
0
The v doesn't work in the teleporting part. zandefear4 90 — 5y
0
I just erased it. zandefear4 90 — 5y
Ad

Answer this question