Running the script even once made it almost the same as what my issue was with the relative transform thingy. I basically want to select a couple of Vertices.. scale that down by x amount. Select another group of vertices and scale that group with the same amount.
Not sure about how to do it via the gui off hand, but via mel try this: setToolTo $gMove; $scaleCent = `manipMoveContext -q -p Move`;setToolTo $gScale;scale -r -p $scaleCent[0] $scaleCent[1] $scaleCent[2] 0.5 0.5 0.5; Replace the 0.5's with whatever amount you want to scale by, select the components and run the script.