What do you want to achieve? Keep it simple and clear!
to teleport the player back into the experience (rejoin)
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”
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)
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.
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