Execute A once, then B.

Is there a node, that will play ‘A’ result once and then play only ‘B’?

maybe try using sequence node then a do once node for 1

How about Sequence or multigate?

Or a branch with a boolean variable.
If A = true, do A. Set A = false.
If A = false, do B.

Thanks for the replies guys! Used Kraut’s method :slight_smile: I was just wondering if they have a node that does that specific thing, but apparently not. Thanks again!