Hi
I have 2 parts:
I have P1 and P2 I want to get the relative CFrame from P1 to P2
so when I use
P2.CFrame = P2.CFrame * Relative
the part should be placed in P1 CFrame
I tried this
local Relative = P2.CFrame:Inverse() * P1.CFrame P2.CFrame = P2.CFrame * Relative
but it seems to be messed up when I rotate one of the parts who could I fix that?
Thanks!