Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Changing Position of Arm? [closed]

Asked by 9 years ago

I've tried removing the left shoulder moving the arm and recreating the joint. Tried just moving it. But both ways just make te character spaz when I change the position. (Sometimes it can look like you're surfing) Please I don't need cod I just need to know the method of it. Thanks and please excuse typos. On phon

Locked by YellowoTide, Shawnyg, Lacryma, and adark

This question has been locked to preserve its current state and prevent spam and unwanted comments and answers.

Why was this question closed?

1 answer

Log in to vote
1
Answered by
Goulstem 8144 Badge of Merit Moderation Voter Administrator Community Moderator
9 years ago

To edit the arm's position.. you need to configure the C0 and possibly C1 properties of the joints.. Joints are called Right Shoulder and Left Shoulder. They're placed in the Torso.

So, an example of editing one..

local joint = Character.Torso['Right Shoulder']

join.C0 = CFrame.new(5,5,0) * CFrame.Angles(0,math.rad(90),0)
0
Thank you! So C0 is the offset of the joint, what is c1? YellowoTide 1992 — 9y
0
C1 is like the offset of the C0, but normally you're fine with using just C0. The wiki can explain more. Goulstem 8144 — 9y
Ad