of     1   

pilothhu
#228363719Sunday, December 03, 2017 4:25 AM GMT

Other one got tagged and it looked horrible I have 3 parts named consecutively. I've connected Part1 and Part2 using a Motor6D. Part0 is Part1, and Part1 is Part2. Part3 is in a different position somewhere in Workspace. Now my question is, how can I edit the Motor6D values to make Part2 move to Part3? I did this: Motor6D.Transform = Part3.CFrame - This just makes it go somewhere else, not Part3's position. Can someone explain to me how Motor6Ds work and a solution to my problem?
Aliics
#228364259Sunday, December 03, 2017 4:44 AM GMT

I believe you'll need to do this: Motor6D.Transform = Part3.Position - Part1.Position ??
ExtremeBuilder15
#228364283Sunday, December 03, 2017 4:45 AM GMT

I believe you want to set the C0 to the CFrame of part3 in part1's object space Motor6D.C0 = part1.CFrame:toObjectSpace(part3.CFrame)

    of     1