Age Update code is not working

I am trying to make a code where if under the age of 5, you will not get any updates. (Also yes I know its < instead of >, but that didn’t work either)

(Edit: I have edited it, so this isn’t so useful anymore)

If you still it I made a block that could help:
Random Item Block
It reports a random item from the list of inputs you put in.

Ooh, thanks! I’ll use this in a future project.

If you’re still wondering what the issue is, this is it.

The OR block doesn’t do what you’re thinking it does. It takes in boolean values (could be numbers, because 0 is false and anything else is true), and then reports true if any value is true, and it runs before the < block. You need to instead have the < check first, so something like this <<(Young-sum) < [5] @<:> > or <(Young-chol) < [5] @<:> > @<:> > or if you want to get fancy <any <(list (Young-sum) (Young-chol) @<> ) < [5] @<:> >> (to get the ANY block, just drag and drop the < block onto the black arrows of the OR block when there is a red halo). This works by using an incredible thing called hyperblocks, where the < operation is calculated for each item in the list and returns a list of booleans instead.