How can i get my projectile to orientate towards my mouse

local Rep = game:GetService(“ReplicatedStorage”)
local Remote = Rep:WaitForChild(“SwordRain_Remote”)

Remote.OnServerEvent:Connect(function(plr,mousePos,extra1)
local SwordClone = script:WaitForChild(“Sacrificial Sword”):Clone()
SwordClone.Anchored = false
SwordClone.CanCollide = false
SwordClone.Massless =true
SwordClone.Parent =workspace
SwordClone.CFrame = plr.Character:WaitForChild(“HumanoidRootPart”).CFrame * CFrame.new(math.random(-25,25),50,math.random(-25,25))

local BV = Instance.new("BodyVelocity",SwordClone)

BV.MaxForce = Vector3.new(math.huge,math.huge,math.huge)
BV.Velocity = CFrame.lookAt(SwordClone.Position,mousePos.p).LookVector * 85

end)