Are you trying to compare an array of variables to a single value, and return true if they’re all the same, and false if not?
In that case, your best move would be to create a function that loops through an array with a For Each node. At the start, set the return bool to true. Then compare each array entry to your goal value. If they’re the same, keep going. If not, break, and setting the return bool to false. On completed, return the bool.
Does that help?
Edit: Phrasing
