local tps = game:GetService("TeleportService")
local id = 2207658960
local function ontouched(player)
local plr = game.Players:GetPlayerFromCharacter(player.Player)
if plr then
tps:Teleport(id,plr)
end
end
script.Parent.Touched:Connect(ontouched)