Hi! Happy new year :) I'm not sure if that feature exists in Maya but if all you want to do is to select all the vertices you can use this little python script. import maya.cmds as cmdsfor each in cmds.ls(sl=True): cmds.select(str(each)+".vtx[*]", add=True) cmds.select(each, d=True) Use it by selecting all your desired…
Awesome script dude. Thanks for the help! I found what I was looking for already integrated into Maya though. Select by components is doing exactly what I want it to do. Select my individual objects, tick that, select Verts and I can clump select everything together! Thanks though for the reply!