I was wondering how to use the '>=' on an IntValue. Here's part of my script...
if not ra.Value >= 3000 or ca.Value >= 3000 then
'ra' and 'ca' are both IntValues. I tried doing it with NumberValues, but it didn't work. Help?
The problem is that ROBLOX thought that you were saying "if (not ra.Value) >= 3000 [...]" To fix it, simply add parenthesis like so:
if not (ra.Value >= 3000) or ca.Value >= 3000 then end