I’m trying to make a part face towards where my HumanoidRootPart is facing but it gives me the error “LookVector cannot be assigned to” here is the script
local Forward = (script.Parent.Position - c.CFrame.LookVector).Unit
local UnitUp = Vector3.fromAxis(Enum.Axis.Y)
local Right = Forward:Cross(Up)
local Up = Right:Cross(Forward)
script.Parent.CFrame = CFrame.fromMatrix(script.Parent.Position, Right, Up)