oorb.CFrame = oorb.CFrame * (game.Players.LocalPlayer.Character.Torso.CFrame.lookVector * 2)
This is the line I use to rotate a brick. The error is seen here:
linkyyy
What a userdata is -- CFrame is a ROBLOX type, so it is userdata.
So are Vector3
s, which is the cause of the error and the difficulty with diagnosing type problems with them.
You cannot multiply a CFrame
and a Vector3
, but that is what you are doing here (lookVector
is a Vector3
and not a CFrame
).