local c = CFrame.new(2, 2, 2)
Let’s say I want to add on to this CFrame.
c = c * CFrame.new(3, 0, 3)
Will this give me (5, 2, 5) or (5, 0, 5)? I’m asking because people always say when combining CFrames use multiplication, so functionally it’s like addition, but in essence it’s still multiplication.