Operations of comparison
From Roblox Wiki
| == | Is the left side equal to the right side? | "hello" == "goodbye" | false | |
| ~= | Is the left side not equal to the right side? | "hello" ~= "goodbye" | true | |
| < | Is the left side smaller than the right side? | 3 < 4 | true | |
| > | Is the left side larger than the right side? | 3 > 4 | false | |
| <= | Is the left side smaller than or equal to the right side? | 3 <= 4 | true | |
| >= | Is the left side greater than or equal to the right side? | 3 >= 4 | false |
