A Specified Member cannot join the Destination Place

local TeleportPlayers = {}

for _, Player in readyPlayers do
	table.insert(TeleportPlayers, PLRS[Player])
end

local Success, Result = pcall(function()
	return TES:TeleportPartyAsync(Maps[math.random(1,#Maps)],TeleportPlayers)
end)

if Success then
	print("Players teleported to ", Result)
else
	warn(Result)
end

Hello everybody, getting this error that goes “A Specified Member cannot join the Destination Place”. Now of course I’ve already searched up the problem and found a thread about it on this very Dev Forum with multiple Staff responses, but with no official apparent reasons or solutions to the problem. Simply trying to make an array of 2 players to teleport to the same PlaceID, what to do?

Thanks beforehand!

the first parameter of teleportpartyasync is the place id

1 Like

Is “Allow Third Party Teleports” enabled? Might be the problem, I dont know much about that stuff.

1 Like

Having this disabled still allows teleportation between the game’s places.

Yes it is, it’s an ID. It’s just randomly taking one from a table.

I’m gonna need a bump guys, still stuck on this since 4 hours. :confused:

Hello there! Is the place you’re trying to teleport to restricted / not published? -If so then:
head to your destination place (using the asset manager), go to settings and publish the place!

I refer to this official roblox page: Experiences and Places | Documentation - Roblox Creator Hub

image

image

In the last picture you just change the permission to “Public” since you wont have paid acces / private servers.
[sorry for the many edits and hope this helped!]

2 Likes