-- VCIの持ち主(VCIを出した人)の情報を取得する local owner = vci.studio.GetOwner() -- VCIの持ち主の名前を表示 print(owner.GetName()) -- boneのnilチェック local hipsBone = owner.GetBoneTransform("Hips") if hipsBone then -- Hipsのpositionを表示する print(hipsBone.position) -- Hipsのrotationを表示する print(hipsBone.rotation) end