How to use C0 and C1 in Code

I want to understand better how to use C0 and C1 in code. (specifically C0). The main problem I’m having is setting the C0 position. I’ve tried Vector3 and CFrame but neither work to change its position, maybe I’m doing it wrong? Here’s the basic code I am trying to figure out:

weld.C0.Position = CFrame.new(0,-0.225,0.25) -- maybe CFrame? I don't know...

Any help would be greatly appreciated. I searched for this on devforum but it doesn’t have much written on it.

It’s a CFrame value, so you just set it directly:

weld.C0 = CFrame.new(0,-0.225,0.25)

You can add rotation e.g. by adding * CFrame.Angles(0, math.rad(45), 0) to it

2 Likes

ty! That was such a simple fix I shoulda known…glad you also helped with the angling to because the weld is angled a bit wrong but I just didn’t fix it cuz I wasn’t sure how.

For the record, you might be interested in using a WeldConstraint instead of a Weld.

That will let you position your parts how you want first, then just create the WeldConstraint after the fact, with all the offsets automatically calculated for you.

1 Like

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