How to Convert an Angle into `Vector.new()`?

You could try using Vector3:Cross() to obtain the vector.

local direction = -humanoidRootPart.CFrame.RightVector:Cross(SlideDownRaycastResult.Normal) LinearVelocity.VectorVelocity = direction * Force 

You can read this tutorial for more info on how it works:

1 Like