I was wondering how you say.
if speed is between like 50 and 60
I know its probably simple but I couldn't really find something this basic on the wiki :P
I'm not sure if I got it right... but..
[code]
local speed = 10
if( speed > 50 and speed < 60 ) then
<code>
end
[/code]
if (speed < 60 && speed > 50)
Thankyou very much.
Sorry, you need to Log In to post a reply to this thread.