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 publicI 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)