I saw this in a Elevator Script, what does it mean?
lookVector is a property of CFrame that is basically the direction a part is facing. For example, if you were do to this code:
workspace.Part.Velocity = workspace.Part.CFrame.lookVector * 300
It would make the part fly forward; aka it would fly in the direction it is facing. The way a part is facing is determined by it's front face. lookVector is very useful for gun scripts, as it lets you make the bullet shoot towards the direction it's facing.
Comment if you have more questions.