How to add to weld position without changing the whole cframe?

Im trying to make a button that edits the weld position by adding to it not changing the whole cframe and this is the line that the script stops on

weld.C0.CFrame = weld.C0.CFrame + CFrame.new(0, 2, 0)

C0 is a CFrame, you do not need to do C0.CFrame, just do C0 = weld.C0 + CFrame.new(0, 2, 0)

2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.