RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Teleport them a few inches away from the part"
-- local script local part = script.Parent local teleportDistance = 5 local function teleportPlayer(otherPart) local player = game.Players:FindFirstChild(otherPart.Parent.Name) if player then local character = player.Character local humanoidRootPart = character:FindFirstChild("HumanoidRootPart") if humanoidRootPart then local newPosition = part.Position + Vector3.new(teleportDistance, 0, 0) humanoidRootPart.CFrame = CFrame.new(newPosition) end end end part.Touched:Connect(teleportPlayer)