It’s pretty self explanatory, I was trying to create fake limbs to set up an R6 inverse kinematics rig, and needed special neck and hip limbs for the torso, it worked before but now it doesn’t. I can send full script if it’s needed

neck
doesn’t exist
I see you’re trying to do local hip, neck = blah blah
, but that’s now how it works. You’re essentially only defining the hip value, so make sure to add Instance.new("Part", character)
to the neck value the same way you’re assigning the names.
See how you have both variables comma separated and then their own values comma separated? Make sure you do that for hip and neck when assigning them.
Thanks.
I haven’t been using Lua in a long while, and I remembered I can stack variables on top of eachother to save myself some line space, but forgot I had to define Instance.new(Part, character)
twice, because I thought it would somehow assign both variables that.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.