GetMilliseconds
Returns the milliseconds value for the Time
The following example prints the current milliseconds in a second.
JavaScript
print("The current millisecond is " + new Date().GetMilliseconds())
Lua
print("The current millisecond is "..tostring(Date().GetMilliseconds()))