Timer Service
A library I wrote while doing a project. I find it useful for making better delays than wait() since you have a full control of the time. This is not a big module and I really don’t have a lot to talk about. The only thing I would mention is that it has proper events. Not a bootleg bool trigger
You can get it from GitHub. As well as read documentation.
Here is showcase code:
TimerService = require(PathToModule)
Timer = TimerService.new(0,5,true)
Timer:Start()
Timer.Completed:Wait()
print("I'm done counting!")