#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)

winged lodge
tacit elk
drowsy carbon
#

do number1 -= 5 after every print

tacit elk
#

that wont work

drowsy carbon
#

use loops btw

tacit elk
#

local number = 50

while number > 0 do
print(number)
number = number - 5
wait(1)
end

drowsy carbon
tacit elk
drowsy carbon
#

search it up if u dont belive me

#

im 100% sure im correct

tacit elk
#

they are the same

drowsy carbon
#

I use it all the time in my scripts, cuz its shorter and easier to type