ok heres what I’m trying to do, basically what I need is something like
if(a._x > 100 and b._x > 100 and c._x >100){
//do action
}
But what I want here is say both a and c were greater than 100 then I want them to preform the action and b does nothing. I looked around in the refference and && and || didn’t seem to work. Anyone knows what this line of code should be?