I want to be able to teleport a group of players to another game but I cant seem to get it to work. What ends up happening is only one player gets teleported. My friend told me to use TeleportPartyAsync but it still doesent work. Any help would be appreciated thanks.
Code For Now:
local TeleportService = game:GetService("TeleportService")
script.Parent.teleportPlayer.OnServerEvent:Connect(function(player, raidName, placeId)
for _, playersInGame in pairs(game.Players:GetPlayers()) do
if playersInGame.PlayerGui.RaidGUI.Bg.JoinRaid.holder:FindFirstChild(player.Name) then
playersInGame.PlayerGui.RaidGUI.Bg.JoinRaid.holder:FindFirstChild(player.Name):Destroy()
end
if playersInGame.raidName.Value == raidName then
local success, result = pcall(function()
return TeleportService:TeleportPartyAsync(placeId, playersInGame)
end)
if success then
print("Players Have Raided")
print(result)
else
print("Raid Has Failed")
warn(result)
end
end
end
end)
Correct me if I’m mistaken, but I believe you need the argument as a table of players, rather than going through the table and teleporting each player individually.
Ok I put them in a table but this error comes out “TeleportService:TeleportPartyAsync error: The player[1031904] with wrong session.” What does this mean?
teleportPartyAsync takes a table it isnt working because you are looping through every person and giving the player instead of the table
If you want a private server for the people you are teleporting you can use
local teleportService = game:GetService("TeleportService")
local placeId = --PlaceId
local playerstoTeleport = {}
local Code = teleportService:ReserveServer(placeId)
teleportService:TeleportToPrivateServer(placeId, Code, playerstoTeleport)
this teleports the players to their own server instead of a public one many people can get teleported to
Also you cant teleport people in Roblox Studio, you would need to publish the game and test it like that
TeleportPartyAsync would work to teleport people to a public server. I was just wondering if you wanted a reserved server, but you dont, so TeleportPartyAsync is what you want to do
script.Parent.teleportPlayer.OnServerEvent:Connect(function(player, raidName, placeId)
local playerTable = {}
for _, playersInGame in pairs(game.Players:GetPlayers()) do
if playersInGame.PlayerGui.RaidGUI.Bg.JoinRaid.holder:FindFirstChild(player.Name) then
playersInGame.PlayerGui.RaidGUI.Bg.JoinRaid.holder:FindFirstChild(player.Name):Destroy()
end
if playersInGame.raidName.Value == raidName then
table.insert(playerTable, playersInGame)
end
end
local success, result = pcall(function()
return TeleportService:TeleportAsync(placeId, playerTable)
end)
if success then
print("Working")
else
print("Not working")
end
end)
Really weird, Ive tried it with my friend again and the error “Not Working” fires. I tried it in studio by myself and it worked only saying cant TP in studio.
alright, im going to test it by making a game that teleports your entire party to a game of your choice. Just so that you won’t (hopefully) need to deal with the game being full