of     1   

ChatR
#40299562Tuesday, January 04, 2011 12:30 AM GMT

time = 60 repeat wait(1) time = time - 1 until time == 0 print(time) It prints 60,59,48,47,46,34, [ more numbers, but doesn't go down by one! ] I would use a for loop but it failed last time.. [portion of script]
ChatR
#40299632Tuesday, January 04, 2011 12:30 AM GMT

I just noticed I have very.. strange problems..
vanillaluv
#40299689Tuesday, January 04, 2011 12:31 AM GMT

You must print it within the wait loop. time = 60 repeat wait(1) time = time - 1 print(time) until time == 0
ChatR
#40299749Tuesday, January 04, 2011 12:31 AM GMT

Does it seriously matter..
goldfissy
#40300445Tuesday, January 04, 2011 12:39 AM GMT

Loop Beginning Loop End Do Stuff <- This will only work when the loop is over
ChatR
#40300518Tuesday, January 04, 2011 12:40 AM GMT

That is how it looks in the whole scirpt.
ChatR
#40300839Tuesday, January 04, 2011 12:44 AM GMT

NVM, I found it out. I was using the .mouseclick event, and every time you click it the time goes down also. :/ Thanks for the help anyways. =D

    of     1