Look Vector from Position

I would like to know if its possible to get the LookVector from a position. If it is then how would I possibly achieve this?

LookVector is a direction? why do you need specifically “position” and not “CFrame”?

1 Like

Im making a Vector3 value in a script that doesn’t have a CFrame value.

Vector3 values have literally no information about anything else other than its position. Since you’re trying to avoid CFrames what you’re asking here is more or less impossible.

You can get the LookVector from two positions like so:

CFrame.new(position1, position2).LookVector

A basepart also has a .Orientation property. Though from what I’ve tested before it doesn’t update constantly(?)

It’s easy
(FirstVector-SecondVector).Unit

1 Like