Just for the sake of testing I wanted to simulate rolling a dice and recording the result. But that ended up with a really long and tedious system of tons of Branches. If the result = 1 is True, record roll as a 1, if not, move to the next branch which is: If the result = 2 is True, record roll as a 2 … etc
Is there an easier way to do this? Is there a way I can create a single branch node with multiple conditions leading to multiple outcomes?