Teleporting to another place takes me to a sketchy game

Suspiciously, whenever I have a teleport-to-place script in my game, it will automatically send me to this game shown in screenshot below.

Not sure why this is happening, as I have tried multiple ways of scripting this teleport script. I have made sure the place ID is my own but this still happens. Any advice?

local TeleportService = game:GetService("TeleportService")
local PlaceID = 6546340539

script.Parent.Touched:Connect(function(hit)
	wait(0.1)
	local player = game.Players:GetPlayerFromCharacter(hit.Parent)
	if player then
		TeleportService:Teleport(PlaceID, player)
	end
end)

is the id correct? make sure you check if the id is correct

1 Like

Is this an alt account of yours? It looks like you don’t own the place.

No that’s not mine. I copied the ID of my own place in. Not sure why it isn’t working. Let me check again

1 Like

I pasted the wrong code. I edited it above.

This looks like this is being caused by a backdoor. Make sure you don’t have any malicious scripts inside any models from the toolbox, and confirm that the plugins you installed are legit and are made by the real users.

1 Like