I have tried stuff like
lspos = ls.C0 rspos = rs.C0
lspos = ls.C0.Positon rspos = rs.C0.Position
lspos = ls.C0.CFrame rspos = rs.C0.CFrame
rs = right shoulder ls = left shoulder
The C0
property of a JointInstance is a CFrame.
We can see (above link) that CFrame
s have a p
property which is a Vector3 which has the x
, y
, and z
properties you are looking for.
(Note that this position will be in the object space of one of the parts)