A CFrame is made out of 12 components: It's position in the Euclidean space and the rotation matrix which has 9 components.
[C00, C01, C02]
[C10, C11, C12]
[C20, C21, C22]
The rotation matrix can be viewed as normal vectors for the axes. (C00, C10, C20) is the normal on X, (C01, C11, C21) the normal on Y and (C02, C12, C22) the normal on Z
CFrame.lookVector is actually -(C02, C12, C22) thats why it moves on the Z axis (forward or backward) when you composite them
One way of moving the part in other directions it's to take the other 'lookVectors' for the desired axis.
So to move a part locally up
01 | function lookVectorX(cf) |
02 | local _, _, _, x, _, _, y, _, _, z = cf:components() |
03 | return Vector 3. new(x, y, z) |
06 | function lookVectorY(cf) |
07 | local _, _, _, _, x, _, _, y, _, _, z = cf:components() |
08 | return Vector 3. new(x, y, z) |
11 | function lookVectorZ(cf) |
12 | local _, _, _, _, _, x, _, _, y, _, _, z = cf:components() |
13 | return Vector 3. new(x, y, z) |
18 | p.CFrame = p.CFrame + (lookVectorY(p.CFrame) * 3 ) |
And likewise with the other axis.