The actual unfiltered selection from the Scene.
class SelectAllOfTag extends ScriptableWizard { var tagName = "ExampleTag"; @MenuItem ("Example/Select All of Tag...") static function SelectAllOfTagWizard() { ScriptableWizard.DisplayWizard( "Select All of Tag...", SelectAllOfTag, "Make Selection"); } function OnWizardCreate() { var gos: GameObject[] = GameObject.FindGameObjectsWithTag(tagName); Selection.objects = gos; } }