Getting multiple objects based on a common word they share in their names

Hey y’all! I recently put together a script which works perfectly fine but that’s not what I need help with. I wanted to know how I can get multiple objects based on a common word in all of their names.
So basically for example if I have multiple objects that are named:

(Word) Something.
(Word) Thing.
(Word) Name.

How do I make it so that I can get object names that have the word “(Word)” In them even if the rest of the object name is different, Is that possible?

To explain further I am using this for a music GUI, and I wanted to make it so that if a bunch of audio names have its music genre in brackets in front of the song name, the textbutton will have a specific color.

image
Like this basically, except the if statement part is what I need help with

if song.Name:match("%(Mysterious%)") then

The % are necessary because parentheses usually mean you’re defining a capture group, but you literally want parentheses.

Oh thank you very much it worked!