══════════════════════════════════ Milliseconds to the next year! Click on the stage to show seconds. ══════════════════════════════════ This is a countdown to the next year (based on the current one) accurate to milliseconds, except it counts in milliseconds. This is not normally possible using local time blocks such as "current hour" because they do not have a millisecond option. ══════════════════════════════════ The way this works is that there is a script that @Vaibhs11 borrowed from their alt @LemonStreets, which computes UTC time out of days since 2000 blocks. Then the UTC time is converted into milliseconds. Days since 2000 blocks are special because they are accurate to even microseconds and able to update faster than Scratch's frame rate. Next thing to do is convert the UTC to your local time zone, that is done by simply subtracting local hours by UTC hours. After that, convert the time zone to milliseconds and add that to the UTC milliseconds we already have. Last step, calculate the milliseconds left until the next year! ══════════════════════════════════ Thank you @Vaibhs11 for the original script, I just added a way for it to update depending on the current year.