Error 773 when rejoining? (via ServerSide script)

  1. What do you want to achieve? Keep it simple and clear!
    to teleport the player back into the experience (rejoin)

  2. What is the issue? Include screenshots / videos if possible!
    every time i try to rejoin via the script peice below it gives me the error
    “Error 773: teleport failed: teleport validation failed”

  3. What solutions have you tried so far? Did you look for solutions on the Creator Hub?
    I have tried using the place id and experience id

so it seems to be a problem with my game,
because i have tried so many things in the script
so if anyone knows any setting i might have that does this or anything wrong
with my script please let me know!

here is my script just in case:

local plr = script.Parent.Parent.Parent -- this is how i get the player in players (not the workspace)
local tp = game:GetService("TeleportService")
wait(5)
tp:Teleport(8202700342, plr)

thanks!

that “plr” line is just.. wrong? i’m not sure where your script is but no server script is inside of any player.

if you want to teleport EVERY player in the server, you should do this instead:

local tp = game:GetService("TeleportService")
--i dunno why you need a wait(5) there, but you should do "task.wait(5)" instead if you wanna keep it.

for _, plr in pairs(game.Players:GetPlayer()) do --basically, for every player, run the following code:
tp:Teleport(8202700342, plr)
end

tell me if you have any more questions! without any context this is the best solution i can come up with.

1 Like

thanks, but it seems to be something outside of the script cause that still gave the same error, ima try to change the catagory this is in

very unlikely something outside the script is causing this.

you changed it to the wrong category. it was right the first time.

1 Like

is the game teleporting you to a game owned by someone else? i was now made aware that this is actually an error that pops up when you try to teleport to a private game or when you try to teleport to a game owned by a different person whilst your game has 3rd party teleports disabled

1 Like

Thank you, that helped me realise I was publishing to the wrong game :skull:

1 Like

LMAO. it happens to the best of us.

1 Like

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