#how do i make it so that it goes down by 5 each time like 45 40 35 30
1 messages · Page 1 of 1 (latest)
too inefficent
do number1 -= 5 after every print
that wont work
use loops btw
local number = 50
while number > 0 do
print(number)
number = number - 5
wait(1)
end
bro dosent know shit about lua
"bro dosent know shit about lua" correction: luau
you can use number -= 5
search it up if u dont belive me
im 100% sure im correct
they are the same
I use it all the time in my scripts, cuz its shorter and easier to type