How do I put 2 values within a radius
for example
I have a value of 12,000 and another value of 13,000
what I need is that within (12,000) and (13,000) be executed
and I do not know how it is
local iluminacion = game.Lighting.ClockTime -- variable
1 | while true do |
2 | wait ( 10 ) -- verifica cada 10 segundos si es la hora 08:00 AM |
3 | if iluminacion > = 8.000 or < = 9.000 then |
4 | dinero.Value = dinero.Value + 350 -- dolares |
5 | end |
6 | end |
7 |
8 | end |
HELP PLS!!!
You need to write full expressions between operators in conditional statements.
1 | if iluminacion > = 8.000 and iluminacion < = 9.000 then |
2 | ... |
3 | end |