Teleport To other places does not work

Hi, so we are currently having problems with teleporting to other places.
It worked perfectly fine before, but for some reason now it just stopped working.
Here is an example of our teleporting code:

local TeleportService = game:GetService("TeleportService")
 
local placeID_1 = 123
 
local function onPartTouch(otherPart)
	
	local player = game.Players:GetPlayerFromCharacter(otherPart.Parent)
	if player then
		
		TeleportService:Teleport(placeID_1, player)
	
	end
end
script.Parent.Touched:Connect(onPartTouch)

When you touch the teleport part it should teleport you to the other place, but instead, it freezes the player’s screen and does nothing.

The screen looks like this:

I’ve been having this problem for a few days now.

1 Like

They added a new security feature that disables teleporting to other places that aren’t by the first game’s owner. Are you the owner of the place?

yes it is a group game and the group creator is me.

it was the third party teleport. I had to enable it

2 Likes