Add a method for activating multiple buttons at the same time in toolbars of plugins

In short, please add a method to the Toolbar object that allows you to create a seperator so that you can use Button:SetActive(bool active) to mark multiple Button objects as active at once.

I’m working on an Anti-Virus plugin and I stumbled upon a problem.
I have two features that can be toggled on or off: an “Auto-Protect” and a “Quarantine” feature.
I made it so that there is a button for each, and clicking the button enables/disables it. To make it easy to overview, I used the Button:SetActive(bool active) method to mark the button blue when the feature is enabled and unmark it when it is disabled.

This worked fine when I used only one feature at a time, but when I tried enabling the other while one of them was already enabled, it unmarked the first one and marked the one I just enabled:

So that’s why I would like for there to be a Toolbar:CreateSeperator() method that allows you to activate multiple buttons at once in the same toolbar.

Edit:
It seems that there’s more to it than just how the areas are seperated, so I’ll rephrase it. The feature I want is basically the ability to somehow mark multiple buttons active at the same time within the same Toolbar. For more information, see the fourth (my second) post in this thread.

Shouldn’t you just create a second toolbar?

That implies a second, separate plugin. Also it doesn’t drag along with the first.

I actually just noticed that in Studio’s own toolbars certain combinations are possible while others are not, and that it’s not simply divided over the seperated areas. For example, Lock and Anchor both override Drag, Move Parts, Resize and Rotate Parts. It seems to be divided into categories rather than seperated areas. In the following image, I gave each category an unique color (anything in red overrides anything in red, anything in green overrides anything in green, etc.):

It’s probably best to implement it with the system that is currently used for these categories. The feature I want is basically the ability to somehow mark multiple buttons active at the same time within the same Toolbar.