CooldownService
CooldownService tracks how often players call important CheckMeIn events. It then limits the amount of calls players can make, according to your Timer setting.
How do I use it?
How to configure CooldownService
--[[
Cooldown Configuration
CMI 3.1
Written by wind_o
--]]
local Timer = 5
local LimitCount = 10
local AutoKick = false
--Debug Option--
local Echo = false
-- Do not edit below --
return{
['Enabled'] = true; -- Is this plugin enabled?
['Function'] = function(API)
API.Service.ModifyCooldownService:Fire('Timer', Timer);
API.Service.ModifyCooldownService:Fire('LimitCount', LimitCount);
API.Service.ModifyCooldownService:Fire('AutoKick', AutoKick);
API.Service.ModifyCooldownService:Fire('Echo', Echo);
end}Last updated