[Behaviour Trees] Join logic path

So, I want to know if is possible to merge the logic like in the picture.

What I’m trying to do is that the behaviour tree branches into those three options (with the selector), execute each node, and then merge again in the sequence. That way I don’t need to duplciate the following logic for each branch.

I think you need to put a sequence node higher up. First part of the sequence, is your selector ( here ), second part is what you want them all to do next…

This! So obvious now. Thank you very much!!!