Progressbar
MSK.Progress.Start
MSK.Progress.Start(duration, text, color)
-- Example 1
MSK.Progress.Start(5000, 'Progressing...') -- default color set in config.lua
Wait(5000)
-- Example 2
MSK.Progress.Start(5000, 'Progressing...', "#5eb131") -- custom color
Wait(5000)
-- As an Export:
exports.msk_core:Progressbar(duration, text, color)MSK.Progress.Stop
MSK.Progress.Active
Last updated