How do set a bool to true using a 'compare float' node?

I currently have my game set up so that a pawn follows an actor around the level. I want the pawn to stop following once they get within a certain distance and only start following again if the actor starts to move away again. I am trying to achieve this with a ‘get distance’ running into a ‘compare float’ and then a ‘branch’ node to swap between the two systems. When the distance = the specified amount I want the pawn to stop following. I can’t figure out how to translate the executable output of the ‘compare float’ into a Boolean value, or maybe there is a better way to achieve this?

Thanks.

2 solutions:

1.you don’t need boole, just execute Get Distance To and Compare Float and use Compare Float instead of Branch
2.If you can’t do that, execute those 2 nodes on tick and set bool variable depending on Compare Float result and use that bool variable to Branch

Of course! It seems so simple now. Thanks! Solved like this: