Enable Child actor on Begin Overlap

I want to enable an child actor this is a child of and actor.

For example. Lets call my parent actor “Chest”. Chest has an overlap collision to where if I press the button near in it the Chest will open.

Under the Chest there are “Coin” actor. Coin has an overlap collision so I can pick them up.

I want to have the Coin disabled until I press the button on the near the Chest.

I have found the visible and hidden for the Coin. But that only disables rendering.

Any tips on how to do this? Am I doing this completely wrong?

Are we talking about Child Actor Component here?

image

It would be probably easier to just spawn a new coin but you can manipulate the actor the component creates like so:

Thank you!