How do I execute two tasks at the same time

@richardsonsam ok… ok. yeah I was just trying to get you to think about what you wanted to do by following the way your code flows or the order your code will execute

think about the sequence node you have which actually just does what it says, as soon as 1st output finishes it executes the 2nd line of code. this happens pretty darn fast

so if you want to spawn both sides - you’ll need 2 spawn actors - 1 coming from the 1st output & 1 coming from the 2nd
(you can use a [Print String] node with a message so you can tell whether or not they both are spawning, for instance)

(you’ll have to figure out their proper spawn locations from there)