Help on dropping script on a tool

I want to replicate a bloxy cola drop from behind and to the right like in parkour.
https://gyazo.com/65af99a0c0af0280efb5f730b5e23d12

I know it has to do with lookvector but I don’t know how to replicate and use lookvector because I’m new to scripting.

Script:

script.Parent.Throw.OnServerEvent:Connect(function(plr,character)

	local handle = script.Parent.Handle
	local char = plr.Character
	handle.Parent = workspace
	handle.CanCollide = true
	wait(.2)
	-- the code to place the lookvector but idk how
	script.Parent:Destroy()
end)

You could use a body mover such as a BodyForce

local BodyForce = Instance.new("BodyForce", handle)
BodyForce.Force = char.HumanoidRootPart.CFrame.RightVector * 100 -- vector pointing to the right of the rootpart
wait(0.2)
script.Parent:Destroy()