I have a problem where after I set the weld of a part to another part.
I am un able to change the parts position(The secondary part)
To do this would I do
weld.C1 = -- MY POSITION/CFRAME
Or is there a different way to do this?
I have a problem where after I set the weld of a part to another part.
I am un able to change the parts position(The secondary part)
To do this would I do
weld.C1 = -- MY POSITION/CFRAME
Or is there a different way to do this?
Yes changing C0 or C1 will change the two parts positions in relation to each other as long as they aren’t both anchored. I’d really recommend reading the Roblox reference pages on different objects you use as they are very useful but here is an important part for the weld:
While the weld is Active, it maintains the part positions such that: part1.CFrame * C1 == Part0.CFrame * C0
Therefore changing any of those 4 values, part1.CFrame, part0.CFrame, C1, or C0 will move your parts around.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.