On Follower

API -

function yourEvent(user)
    runEvent('Thanks for following' .. user.displayName);
end

return function()
    addEvent('follower', 'yourEvent');
    keepAlive();
end

Events are asynchronous coroutines.

Last updated