of     1   

badfitz99
#141059495Monday, July 21, 2014 3:15 PM GMT

Above or equals? so like if kills >= 5 then --stuff end will that mean if kills above or equals 5 then do stuff end
blockoo
#141059593Monday, July 21, 2014 3:16 PM GMT

Typically we say "greater than or equal to", but you are correct.
0_0
#141059720Monday, July 21, 2014 3:18 PM GMT

Yep. if kills >= 5 then --stuff end that will check if the variable kills is greater than 5 or equal to 5 3 is not greater than 5 or equal to 5 so it wouldn't run 5 is not greater than 5 but it's equal to 5 so it would run 8 is not equal to 5 but is greater than 5 so it would run etc

    of     1