Issues with Teleport Service

I am trying to use the teleport service to teleport my player but it seems to be giving me this weird error saying that the place is private. This happened when I toggled third party teleports. However, before the toggle, it would throw this warning

this is what it looks like now when trying to call it, remember both places are public

I have heard from here Incident Report: Large Spike in Teleport Failures: "Attempted to teleport to a place that is restricted" that this may be an issue with Roblox. If it is my timezone is GMT+/-7:00 southern California.

Here is the starting place No Blocks Sky - Roblox And this is the place I am attempting to teleport to No Blocks Sky - Roblox

Here is also the code I am using to teleport it

game:GetService("RunService").Heartbeat:Connect(function()
	local safeEarthDistance= (math.sqrt(1000^2 + 1000^2)) - 800
	print(safeEarthDistance)
	if (script.Parent.PrimaryPart.Position - workspace.Earth.Position).Magnitude < safeEarthDistance then
		print("Glitch zone")
		game:GetService("TeleportService"):Teleport(553030045666)
	end
end)
1 Like

It looks like :Teleport(id) has an extra 66 on the end. The place ID looks to be 5530300456 where you have045666 on the end.

3 Likes