How to make a part look where its moving

How can I make a part look where its moving with a Velocity. I have the Velocity of an arrow up to 750 and want it to look where its going to make it more realistic.

1 Like

This would probably be done by using CFrame LookVectors. The vector you want the part to be “looking at” is already there for you, in the velocity. Using CFrame.lookAt() should work:

CFrame.lookAt(part.Position, part.Position + Velocity)

3 Likes

For anyone else searching this up in hopes to finding a solution, this does work.

EDIT: For anyone wondering why I said this, it’s that the comment, at the time, wasn’t marked as a solution. So just keep that in mind.