Eezby
(Ezby)
August 10, 2023, 11:36pm
#1
Steps
Join game
Attempt to teleport to a reserved server
Observe 772 Teleport Error
Notes
Extremely similar to the previous 773 error, but less prevelent: 773 Teleport Errors On Reserved Server Teleports
Reproduction Place
This place tracks the number of times the player teleports and the number of times it fails with an init error. The number of errors is ~60-70% of the time.
Games Affected
Expected behavior
I expect to teleport successfully to a reserved server within the experience without teleport errors.
4 Likes
SnakeWorl
(Droopy440)
August 10, 2023, 11:46pm
#2
I’m also experiencing this issue.
It seems that if I put a wait(5) after reserving the server and before teleporting the players it works.
local rkey = TS:ReserveServer(place)
TS:TeleportToPrivateServer(place,rkey,players,nil,tpdata,nil)
and
local rkey = TS:ReserveServer(place) -- Returns a code
wait(1)
TS:TeleportToPrivateServer(place,rkey,players,nil,tpdata,nil)
both get the 772 error, but
local rkey = TS:ReserveServer(place) -- Returns a code
wait(5)
TS:TeleportToPrivateServer(place,rkey,players,nil,tpdata,nil)
seems to work.
It seems like a dumb solution to just have a wait, and it’s a new bug, but it is a temporary fix for me so far.
4 Likes
SuperPat77
(SuperPat77)
August 11, 2023, 12:03am
#3
We ran into an issue with teleports today that was just resolved. Is this still happening for you?
3 Likes
Eezby
(Ezby)
August 11, 2023, 12:27am
#4
This issue appears to have resolved itself organically. Using my test place, I am no longer getting the huge amount of teleport errors I was when I made this report.
5 Likes
system
(system)
Closed
August 25, 2023, 12:28am
#5
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.