How to teleport between experiences?

  1. What do you want to achieve? Keep it simple and clear!
    I want to teleport a group of players from one experience to another separate one, but whenever I try to, I get HTTP 403.
    image

  2. What is the issue? Include screenshots / videos if possible!
    The problem is that it occurs when I use TeleportService:ReserveServer()

  3. What solutions have you tried so far? Did you look for solutions on the Developer Hub?

I know that teleports do not work in Studio. I have tried it with a separate method by calling TeleportService:Teleport() instead, it didn’t work since I was in studio, but there was no HTTP 403.

Is the problem with the experience? Am I using the wrong ID?

1 Like

Ok so teleport service doesnt work inside of studio, youre going to have to use it in the actual game.
Also make sure you publish the place you want to TP to, which can be done by doing file → Publish to roblox.

Realizing you talked about how how you know teleports dont work in studio.
But still make sure you publish the place you are going to teleport to

1 Like

Use TeleportAsync(). An example would be something like:

local tps = game:GetService("TeleportService")
tps:TeleportAsync(placeId, {player, player2, etc})

Also, if the game you’re trying to teleport to is owned by someone else, you need to enable third party teleports in game settings > security

2 Likes

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