it looks like it's closing the while loop as soon as the counter hits 3, because of this:

Code:

while(seconds > 3){


if(seconds == 3)
{



this means as soon as the while loop gets to 3 seconds, the while loop stops, which means you might want to put this:

while (seconds > 2)

it's just an idea, but it might be the reason


- aka Manslayer101