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)