Enable/Disable Object and Music?

I’m making a game that has three enemies, but you can only face one at a time. Instead of making it so you click a button that loads their map I’ve decided to show them on the main menu.

Upon start, the first enemy is displayed by default with his theme song attached as an audiosource to the camera. I have the other two models as children objects (along with the other enemy) of the camera. I have made 3 buttons in the top left with their names in, when clicked I’d like them to show the enemy for that button.

So for example if Enemy2 is pressed, I want to hide Enemy1 from the camera and play/loop another soundtrack but if I press Enemy1 I want to change back to his model/music.

I tried using Transform but I couldn’t figure out the right thing to use, as for the music I tried using playonce/loop through the code but it overlapped.

EDIT: Nevermind, I managed to get the music working now by using audio.PlayOneShot (Not sure if thats the actual code) and then using the same on “public void Awake()” I used audio.Stop() too so it’s all good now. I just need to Show/Hide the models if possible.

gameObject.enable = false