local pad = script.Parent
pad.Touched:Connect(function(hit)
local character = hit.Parent
if character and character:FindFirstChild("HumanoidRootPart") then
local root = character.HumanoidRootPart
-- move player 5 studs forward from the pad
root.CFrame = pad.CFrame * CFrame.new(0, 0, -8.2)
end
end)