CheckMeIn Developer
  • Introduction
  • Getting Started
  • API Functions
  • Tutorials
    • Roblox Premium Rooms
    • CooldownService
  • CheckMeIn 4.0
    • Getting Started
    • API Functions
    • Database
Powered by GitBook
On this page

Getting Started

This guide will cover the basics of CheckMeIn's Plugin system.

PreviousIntroductionNextAPI Functions

Last updated 5 years ago

The API functions are designed for programmers. If you do not know Lua, consider learning it through the .

Make sure you have set up your system and that it is working before you start programming Plugins.

CheckMeIn has a rich API that can be accessed through Plugins. Making a plugin is quite simple.

  1. Create a ModuleScript under Workspace.CheckMeIn.Plugins

  2. Name it what you want

  3. Paste the following template into the script

return{
['Enabled'] = true; -- Is this plugin enabled?
['Function'] = function(API)
-- Your code goes here
end}

At the start of the game, Function is called by the server, it will pass the API value which you can use to call API functions. To find out what functions there are, proceed to the next page.

Developer Hub
Manual