get an array of the currently selected vertices, polyop ops dont return arrays for this sort of thing, they return whats called a bitArray. because of this we use 'as array' to convert it into an array.aSelectedVerts = (polyop.getVertSelection $) as array we find how many verts are selectednSelectedVerts =…
OK thank you for the breakdown. Most of the time when trying simple scripts like that, I understand the functions, but have problems inputing the correct data type. (plugin an array instead of a integer for example). That's my issue most of the time :/ Practices makes perfect I guess. But it will take a while I think. At…