local plrs = game:GetService("Players") local plr = plrs.LocalPlayer local m = plr:GetMouse() local tool = Instance.new("Tool") tool.Name = "proohio tool" tool.RequiresHandle = false tool.Parent = plr.Backpack tool.Activated:Connect(function() if m.Target then local char = plr.Character or plr.CharacterAdded:Wait() if char then local hum = char:FindFirstChildOfClass("Humanoid") local root = hum.RootPart if root then root.CFrame = CFrame.new(m.Hit.p + Vector3.new(0, 3, 0)) end end end end)