Installation
Install the Technified Adonis plugin using the Technified Manager.
Prerequisites
Before installing:
- Adonis Admin - Must be installed and working in your game
- Technified Manager - Get it from the Creator Store (opens in a new tab)
- API Key - From Dashboard → Settings → API Keys
- Guild ID - Your Discord server ID
- HTTP Requests - Enable in Game Settings → Security
Installation Steps
Step 1: Install the Manager
- Open the Technified Manager (opens in a new tab) on Creator Store
- Click "Get Plugin"
- Open Roblox Studio
- Find "Technified Manager" in the Plugins tab
Step 2: Install Adonis Plugin
- Open the Technified Manager from the Plugins tab
- Click "I just want the Adonis Extension" at the bottom
- Follow the installation wizard
- The plugin file is added to your Adonis plugins folder
Step 3: Configure
After installation, configure the plugin:
-
Open the plugin file at:
ServerScriptService/Adonis/Loader/Config/Plugins/Server-Technified.luau -
Find 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,
}- Enter your API_KEY and GUILD_ID
- Optionally configure feature toggles
Step 4: Test
- Play the game in Studio
- Open the Output console (F9)
- Look for messages starting with
[Technified]
Successful initialization:
[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.0Getting Your API Key
- Go to your Technified Dashboard
- Navigate to Settings → API Keys
- Click "Create API Key"
- Copy the full key (starts with
technified_)
Getting Your Guild ID
- Open Discord
- Go to User Settings → Advanced
- Enable Developer Mode
- Right-click your server name
- Click "Copy ID"
Manual Installation (Alternative)
If you prefer manual installation:
- Download
Server-Technified.luaufrom Technified - Place in:
ServerScriptService/Adonis/Loader/Config/Plugins/ - Configure the file as shown above
Updating
When updates are available:
- Open the Technified Manager
- Check for updates
- Click "Update" if available
- Your configuration is preserved
Or manually:
- Download the new plugin version
- Replace the existing file
- Copy your API_KEY and GUILD_ID to the new file
File Location
After installation:
ServerScriptService/
└── Adonis/
└── Loader/
└── Config/
└── Plugins/
└── Server-Technified.luau ← Plugin fileTroubleshooting
"API Key is not configured"
Make sure you've set the API_KEY in the configuration. It should start with technified_.
"Guild ID is not configured"
Make sure you've set the GUILD_ID. It should be your Discord server ID (a long number).
"HttpService is not available"
Enable HTTP Requests in Game Settings → Security.
"Authentication failed"
Your API key may be invalid or expired. Generate a new one from the dashboard.
Plugin not loading
- Check the file is in the correct Plugins folder
- Check the file extension is
.luauor.lua - Check for syntax errors in the console
- Verify Adonis is loading properly
Commands not working
- Make sure Adonis is working (try a normal Adonis command)
- Check you have the required permission level
- Verify the plugin initialized (check console for
[Technified]messages)