Answered by
5 years ago Edited 5 years ago
You need to modify the CFrame of the weld. In your case (and I think most cases), you want to modify weld.C0
(CFrame0, like Part0).
Because your backpack's back-to-front, you want to rotate it 180 degrees on the Y axis. If you're familiar with CFrames, you can probably do this yourself, but in case not, you'll want to use CFrame.Angles like so:
weld.C0 = weld.C0 * CFrame.Angles(0, math.rad(180), 0)
If you need to reposition it, add a Vector3 value:
weld.C0 = weld.C0 + Vector3.new(x, y, z)
EDIT:
Sorry - I didn't notice you were using a WeldConstrains as opposed to a regular weld. If it's the same to you, just use a regular weld, as you can set the CFrame for them.