How to Equalise time seconds

Hi All

I have a countdown time which has 5 different countdown seconds

i.e

46801

46802

46801

46802

46801

the seconds count down

how can equalise the 5 different times so they all read the lowest seconds i.e  46801 in this case.

all seconds are within 1 second of each other but as the code loops there will be some sort of delay

causing some of the units to lag behind a seconds or so

it seems to be better on the eyes when the times are the same and move the same

so in the above exampe i am lookin to display

46801

46801

46801

46801

46801

rather than a mix

thankyou

Hi, you could something like this.

local displayTime=math.min(time1,time2,time3,time4,time5)

Why not use one timer if you want them all to be the same? And display that timer 5 times.

Hi, you could something like this.

local displayTime=math.min(time1,time2,time3,time4,time5)

Why not use one timer if you want them all to be the same? And display that timer 5 times.