"a specified member cannot join the destination place"

this script should teleport all players in the server to the place id after everything fires.

local lighting = game.Lighting
local tweenservice = game:GetService("TweenService")
local tpservice = game:GetService("TeleportService")

local fountainCount = 0
script.Parent.ChildAdded:Connect(function()
	local darktween = tweenservice:Create(lighting,TweenInfo.new(2),{ExposureCompensation = lighting.ExposureCompensation - 1.5})
	darktween:Play()
	fountainCount += 1 
	
	if fountainCount >= 5 then
		task.wait(3)
		tpservice:TeleportPartyAsync(131898370913947,game.Players:GetPlayers(),nil,game.ReplicatedStorage.darkandevil)
	end
end)

when used, i get the error in the title.
my place access is set to fully open and all teleports inside are allowed.
what is the problem

The issue is likely the teleportData argument. You are passing game.ReplicatedStorage.darkandevil as the fourth argument, which is meant for a table of data, not an Instance. If you want to pass data, use a plain table instead.

the 4th argument is for the loading screen, the 3rd is for teleport data

is the place you’ve included in this script the target place? the one under the “cart ride into 17 gregnant hyenas” universe?

if so, the error could be because there are no versions of the place published yet - it’s not playable

“cart ride into 17 gregnant hyenas” is a game I own, and i am trying to teleport people to a subplace of it which has access set to fully open.

it doesn’t matter how open or public it is if the place hasn’t been published.

go to the place’s page here, click the three dots and “Edit in Studio”. then publish the place

the starter place and teleport place are both published

interesting. can you visit this API endpoint and screenshot what you see?

https://games.roblox.com/v1/games/multiget-place-details?placeIds=131898370913947

from my account, the place isn’t playable (PlaceHasNoPublishedVersion)

The API is returning PlaceHasNoPublishedVersion for that ID. If you’re sure it’s published, double check that the Place ID in your script is actually correct and not just a Universe ID or something else.

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.