how can I put in order trigger volumes

Hi everyone, I have a questions that how can I put in order trigger volume. forexample I have two trigger volume and I want that second trigger volume would done active when I enterin first trigger volume. how I can do this with blueprint .

You can either 1) use the first trigger volume to spawn the second trigger volume, or 2) have a boolean branch check on the second trigger volume (called something like HasTheFirstTriggerVolumeBeenTriggeredYet?), that is set to false, so that when the second volume is triggered the function/event doesn’t run. You can use the first trigger volume to set this to true, so it WILL run when triggered.