Teleporting works between places but doesn't seem like to show the place

My game is having an issue with the teleport between places. At first, It was worked perfectly fine but suddenly, it doesn’t teleport to the place. This issue is been occurring for 3 days now and yet still the same.

Sometimes it teleport but doesn’t show the place


Sometimes it show this.

I don’t know where to put this so instead I put it here

I already checked my script like 10 times already and there’s nothing wrong with it.

May i please see the code for the teleporting I can not really help if i don’t see any code :rofl:

local Prompt = script.Parent.ProximityPrompt
local TP = game:GetService("TeleportService")

Prompt.Triggered:Connect(function(player)
    if player then
       TP:Teleport(id, player)
    end
end

its a server script and inside a character model

try this

local prompt = script.Parent.ProximityPrompt
local tp = game:GetService('TeleportService')
local id = --ID here

prompt.Triggered:Connect(function(player)
  local success, err = pcall(function()
     tp:Teleport(id, player)
  end)
  if success then
      return
  end

  if err then
      warn(err)
  end
end)

If this doesn’t work try tp:TeleportAsync(id,player)

Tried :Teleport and :TeleportAsync yet nope sitll doesn’t work :woozy_face:

is it on a local or server script

regardless try doing local PlayerToTp = game:GetService(“Players”):FindFirstChild(player)

It’s a server script.

Still the same :woozy_face:

it seems your not the only one

It appears to be a roblox issue when attempting to “close” a server, we’ve noticed it happens during shutdowns but doesn’t happen every time.