Skip to main content
The easiest way to install the plugin is through the Technified Manager, a Roblox Studio plugin that handles installation, updates, and configuration for you.

Prerequisites

  • Adonis Admin installed and working.
  • Technified Manager from the Creator Store.
  • An API key from Settings > API Keys.
  • Your Guild ID.
  • HTTP Requests enabled in Game Settings > Security.

Install

1

Install the Manager

Open the Technified Manager on the Creator Store, click Get Plugin, then find it in the Plugins tab in Studio.
2

Install the Adonis extension

Open the Manager, click I just want the Adonis Extension at the bottom, and follow the wizard. The plugin file is added to your Adonis plugins folder.
3

Configure

Open the plugin file and set your API key and Guild ID.
4

Test

Play the game in Studio and watch the output console.

The plugin file

After installation, the file lives here:
ServerScriptService/
└── Adonis/
    └── Loader/
        └── Config/
            └── Plugins/
                └── Server-Technified.luau
Open it and fill in the configuration section:
local TECHNIFIED_CONFIG = {
    API_KEY = "technified_...",              -- Your API key
    GUILD_ID = "1234567890123456789",        -- Your Discord server ID
    BASE_URL = "https://api.technified.xyz/api/v1",
    REQUEST_TIMEOUT = 10,

    -- Features
    SYNC_PERMISSIONS = true,
    SYNC_BANS = true,
    SYNC_MUTES = true,
    BIDIRECTIONAL_SYNC = true,
    LOG_ACTIONS = true,
    TRACK_SESSIONS = true,
    SESSION_MIN_LEVEL = 100,
}
See Configuration for what every option does.

Get your API key

1

Open API Keys

In the dashboard, go to Settings > API Keys.
2

Create a key

Click Create API Key and copy the full key. It starts with technified_.

Get your Guild ID

1

Enable Developer Mode

In Discord, open User Settings > Advanced and turn on Developer Mode.
2

Copy the ID

Right-click your server name and click Copy ID.

Confirm it works

Play the game in Studio, open the output console (F9), and look for [Technified] messages. A successful start looks like this:
[Technified] Initializing v2.0.0...
[Technified] Guild: 1234567890... | Permissions: true | Bans: true | Mutes: true | Bidir: true | Sessions: true | Actions: true
[Technified] Custom commands registered: :tbans, :tmutes, :tcheck, :tsync, :tstatus
[Technified] Initialized successfully! v2.0.0

Updating

Open the Manager, check for updates, and click Update. Your configuration is preserved. If you update manually, copy your API_KEY and GUILD_ID into the new file.

Troubleshooting

Set API_KEY in the config. It should start with technified_.
Set GUILD_ID to your Discord server ID, a long number.
Enable HTTP Requests in Game Settings > Security.
Your API key may be invalid or expired. Generate a new one in the dashboard.
Check the file is in the correct Plugins folder, has a .luau or .lua extension, and has no syntax errors. Confirm Adonis itself is loading.