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 |