//Create For Loop to go through each selected item and //connect it's Y rotation axis to the persp camera's Y rotation global proc spooMakeBillboard() { string $objList[] = `ls -sl`; string $obj; for ($obj in $objList) { //connect persp Y rotation to targets Y rotation connectAttr -f persp.rotateY ($obj + ".rotateY"); } }