Hello developer, I am trying to get CFrame or more specifically LookVector from a player, how would I go about doing this and is it even possible?
you can do
Character.Head.CFrame.lookVector
or you can do Character:GetPivot() this will return a CFrame from the character model itself
Can it be done through server script or local script?
It seems like the location is the same as using a part’s LookVector.
this works too.
game.Workspace.YOURMODEL:GetPivot().lookVector
no it won’t be the same, try rotating it.
Character:GetPivot().LookVector
Can be performed in both a local script and a server script.