Teleport Failed: Error "733"

  1. What do you want to achieve? Keep it simple and clear!
    I am currently making a horror game, and its like PM 6:06 so i want the player to teleport to different sublevels, also made by places.

  2. What is the issue? Include screenshots / videos if possible!
    Apparently, i get Error 733.


    Even though i have all these settings turned on:

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?
    Every solution i have seen is “Oo make the place public.11” or “Enable third party teleports” or “Make your game public”

Anyone have a different solution? I really want this to work!

1 Like

the error could be

  • the place is disabled
  • the place is private
  • the place is paid
  • wrong place id entered


image

image
Everything isn’t disabled and the place ID is right, i don’t get this.

image
No script errors either

change the placeId variable to a number, since I don’t remember using string when teleporting users

local placeId = 11525022226


Still, a fail.

can you show the line where you teleport the player

local function teleportPlayers()
	if #list > 0 then
		billboard.Frame.Status.Text = "TELEPORTING"
		billboard.Frame.Status.TextColor3 = Color3.fromRGB(255, 0, 0)
		billboard2.Frame.Status.Text = "TELEPORTING"
		billboard2.Frame.Status.TextColor3 = Color3.fromRGB(255, 0, 0)
		local playersToTeleport = {}
		local teleportTime = 0
		for i=1,#list do
			if game.Players:findFirstChild(list[i]) then
				table.insert(playersToTeleport,game.Players:findFirstChild(list[i]))
				TransitionEvent:FireClient(game.Players:findFirstChild(list[i]))
			else
				table.remove(list,i)	
			end
		end 
		local code = TS:ReserveServer(placeId)
		teleporting = true
		TS:TeleportToPrivateServer(placeId,code,playersToTeleport)
		repeat wait() until #list <= 0
		billboard.Frame.Status.Text = "READY"
		billboard.Frame.Status.TextColor3 = Color3.fromRGB(255, 0, 0)
		billboard2.Frame.Status.Text = "READY"
		billboard2.Frame.Status.TextColor3 = Color3.fromRGB(255, 0, 0)
		teleporting = false
	end
end

anything wrong with the code?
omgwhy30characterlimit

i don’t see anything wrong, maybe its a bug

Maybe the game that you’re trying to load and play is private, try making it public.

Its a place. How do i make a place in a game public or private?

it is definitely public

So, it’s a bug? Well, i guess it would be. But i don’t get how it would be a bug since games like Airplane and Camping TP the player with no problems.

Sorry to bump this but I am now getting this error on my place, did you happen to find out what the issue was?