Hwo to split the Exec line to execute two different branches every frame?

I have a problem where I need two branches that have to happen every frame, but I cannot connect the exec line from event tick to do so. What should I do? Is there a way to do this or do I have to make a separate blueprint or do this another way?

You don’t. After first condition branch (& code) finishes you should start second condition branch (& code).

|| u could use Sequence node:

https://docs.unrealengine.com/portals/0/images/Engine/Blueprints/UserGuide/FlowControl/Sequence_Example.png

thank you :slight_smile: