How do I Teleport a group of players to another game?

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)
1 Like

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

It still doesent work, keeps printing “Doesent work”

Run it in the actual game, not studio

I did, doesent work. character limit

How can I make it to a public one? Since I want to have everyone teleport to a game like lets say “Adopt Me” and be in the server publicly.

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

So would the code @walshuk gave me work? And if it does why doesn’t it work for me? 3rd Party Teleports are on.

It would work, does it for you? did you publish the game and go into it in the actual game client?

Was the script supposed to be local? Otherwise it doesn’t work. I went into the game with a friend and neither of us teleported.

Try doing this

I put TeleportAsync instead of TeleportPartyAsync. According to the roblox wiki it should work TeleportService | Documentation - Roblox Creator Hub

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.

did you publish the game again to update the changes?

yep, still errors saying it cant TP player.

is the placeId valid?
https://i.gyazo.com/1eda2b062d8a5666305f4410b1f506e3.png
heres an example of the Ragdoll Universe place Id

Also try printing the playerTable just before you try and teleport

I printed the table and it prints the players.

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

Ive tried it again by myself just now and it works, but it seems it can only teleport 1 player.