I've been looking all over the wiki, yet I can't seem to figure out how to round down a value to the nearest .01. This is the portion of my script where I attempted to round the value:
math.floor((tick() - start)*100/100)
However, when printed the value still turns out as a whole number. Any help would be appreciated.
Instead of putting the *100/100 inside of the same operation, maybe try:
math.floor((tick() - start)*100)/100
This is because math.floor will always round to the nearest integer, but that integer can only be manipulated from outside the math.floor() function.