"if player then local otherPlayer for _, p in pairs(game.Players:GetPlayers()) do if p ~= player and p.Character and (p.Character.HumanoidRootPart.Position - mat.Position).Magnitude <= mat.Size.Magnitude then otherPlayer = p break end end"
-- local script for teleporting the player when they touch a part
local mat = script.Parent
local teleportDistance = 7
local teleportDelay = 5
local function onPartTouch(otherPart)
local player = game.Players:GetPlayerFromCharacter(otherPart.Parent)
if player then
local character = player.Character
if character then
local humanoidRootPart = character:FindFirstChild("HumanoidRootPart")
if humanoidRootPart then
humanoidRootPart.CFrame = humanoidRootPart.CFrame + Vector3.new(teleportDistance, 0, 0)
wait(teleportDelay)
end
end
end
end
mat.Touched:Connect(onPartTouch)