local tool = script.Parent local player = game.Players.LocalPlayer local mouse tool.Equipped:Connect(function() mouse = player:GetMouse() mouse.Button1Down:Connect(function() if mouse.Target then local character = player.Character local hrp = character and character:FindFirstChild("HumanoidRootPart") if hrp then local clickPos = mouse.Hit.Position hrp.CFrame = CFrame.new(clickPos + Vector3.new(0, 3, 0)) end end end) end)