772 Teleport Errors On Reserved Server Teleports

Steps

  1. Join game
  2. Attempt to teleport to a reserved server
  3. 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

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

We ran into an issue with teleports today that was just resolved. Is this still happening for you?

3 Likes

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

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