A couple of weeks ago I created a simple module to format parts into a clock interface.
This might be useful to some users, so I’ll link the Repo.
–
Usage:
[1] : number "The number to display"
[2] : table "The clock models"
[3] : bobolean "Overflow clock" - If this is enabled, if there are more numbers than clocks all clocks will go to "9".
format(52, {script.Parent.Clock_1, script.Parent.Clock_2,}, true);
-- ^ The expected result is for the clock to display 52
–
Just a small note from me. I’m aware that this might not be the best way to program this. Please share any feedback or improvements that I should add.
Any and all feedback on this will surely help me improve my skills.