Teleporting to place Issue

So I have been trying to making it so once you press Play for the menu, it teleports you to a Roblox Place that is part of the same game. What I mean is this.

This is the starter place of the game:

and this is the place the play button is to teleport you too:
https://www.roblox.com/games/4965855126/Port-Barcelona

local Success, Error = pcall(function()
		TeleportToGame(4965855126)
	end)
	
	repeat
		FT = FT + 1
		wait(5)
		Success, Error = pcall(function()
			TeleportToGame(4965855126)
		end)

The value success is working correctly as I have it too print if it works and it does print success.

I’ve seem to find the error in the script. The teleportation part of the script never ran due to the issue of something failing before it.