Bigger then or less then

What do I type if I’m trying to make a script check if a number is bigger then or less then another number?
And what do I type if I want to know if a number is for example 5 or lower?

you can use “if yournumber > number2 then” and it will check if “yournumber” is greater (bigger) than “number2” and if you want to check if number is smaller then replace “>” with “<” you can also look if number equals same as the other number “if yournumber == number2 then” and don’t forget to put end at the end.


Thanks I’ve been searching the documentation for it

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.