Failed teleport HTTP 400 "Bad Request"

  1. What do you want to achieve? Keep it simple and clear!

A game select screen, but since the first game is outside of the “universe” of the game selector i made a separate part of the script for it

  1. What is the issue? Include screenshots / videos if possible!

When trying to teleport to my other game (im the owner, it is not a team project or set to a group) it returns a warning “HTTP 400 (Bad Request)”

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

Every forum i see that talks about http 400, it’s about teleporting to private server
(this is not the case, im teleporting to a game in general)

Code:

local teleportdata = { --add data later
		AmountOfPlayers = 1;--test only
		Test2 = 3;--test only
	}
	local options = Instance.new("TeleportOptions")
	options.ShouldReserveServer = false ---------------------------
	options:SetTeleportData(teleportdata)
	
	print(GameID,plr,options)
	SafeTeleport(GameID,{plr},options)

o-oh i fixed it while typing this…
y-yay…?

im going to reply with the mistake i made in case someone makes the same mistake

1 Like

So, basically i just copied this script from the other game i made (the one im trying to tp to) and forgot to disable “ShouldReserveServer” in

where is now “false” was set to “true” and that seems to fix it, im just typing this out if someone is dumb like me :DD

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