Loading...
Loading...
The seamless bridge between Discord and Roblox. Verification, moderation, and management, unified.
Platforms unified
Discord ↔ Roblox
Live command sync
Dashboard → game
Edge response
Cloudflare Workers
Free forever
No credit card
Live Sync
Verification, role bindings and moderation flow seamlessly between Discord and Roblox.
Features
Powered by Cloudflare Workers. Completes in milliseconds.
OAuth 2.0 with end-to-end encryption.
Ban on Discord and Roblox simultaneously.
Custom forms with approval workflows.
Sync roles based on ranks, badges, and gamepasses.
Track activity and manage your team.
Custom actions when Discord AutoMod fires.
Control Roblox servers remotely. Kick, ban, mute, broadcast.
Rank sync, mod logging, and activity tracking.
Set up in minutes. One-click provider switch.
How it works
Invite Technified to your Discord server with one click.
Users link their Roblox account through secure OAuth.
Roles are assigned instantly and stay up to date.
Deep Dive
Roles that just work.
Bi-directional role sync with 4 binding types. Set up once and forget.
Drop one module into your game and Discord roles, moderation, and activity tracking start syncing automatically. No backend to run, no webhooks to wire up.
--[[
Technified Adonis Server Plugin
Author: Febreeze · License: AGPL 3.0
]]
return function(Vargs, GetEnv)
local server, service = Vargs.Server, Vargs.Service
local Admin = server.Admin
local Settings = server.Settings
local PLUGIN_VERSION = "Beta 8.2"
-- ==================== CONFIGURATION ====================
local TECHNIFIED_CONFIG = {
API_KEY = "", GUILD_ID = "",
BASE_URL = "https://api.technified.xyz/api/v1",
SYNC_PERMISSIONS = true,
SYNC_BANS = true,
SYNC_MUTES = true,
SYNC_SHIELD = true,
BIDIRECTIONAL_SYNC = true,
TRACK_SESSIONS = true,
DEBUG = false,
}
end