Multiplying existing CFrame by CFrame.new(x, 0, z)

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.

This will give you 5, 2, 5. It is basically like addition. If it was like multiplication, it’d instead be like 6, 0, 6