Two short walkthroughs: create your Discord bot application, and set up your Firebase Realtime Database. Once done, send me your token and database URL — I'll handle the rest.
You'll create a Discord Application, grab its token, and install it to your account.
Go to discord.com/developers/applications and log in with your Discord account.
Click the New Application button in the top-right.
Give it any name you like — this is what people will see (e.g. Nova Delivery). Accept the terms and click Create.
In the left sidebar, click Bot. You'll see your bot's profile page with its username and avatar.
Scroll down on the Bot page to the Privileged Gateway Intents section. Enable all three toggles:
Click Save Changes at the bottom of the page.
At the top of the Bot page, find the Token section and click Reset Token. Confirm with your password or 2FA.
A new token will appear. Click Copy and save it somewhere safe — you'll only see it once.
In the left sidebar, click Installation. Under Installation Contexts, enable both options:
Under Install Link, select Discord Provided Link.
Under Default Install Settings → User Install, add the scope:
applications.commandsUnder Default Install Settings → Guild Install, add these scopes:
applications.commandsbotFor Guild Install permissions, add: Send Messages, Embed Links, and Read Message History.
Click Save Changes.
Still on the Installation page, copy the Install Link at the top.
Open that link in a new tab. You'll see an installation prompt — you can install the bot to:
Pick whichever fits. Installing to your account is the fastest way to get going.
DM me (@nova) the bot token you copied in step 5. I'll plug it into the backend and deploy your bot.
Firebase is Google's free real-time database. It connects your Discord bot to the Roblox bot instantly. The free tier is more than enough.
Go to firebase.google.com and click Get started. Sign in with your Google account.
Click Create a project (or Add project if you already have one). Give it a name like nova-delivery-yourname.
When asked about Google Analytics, turn it off — you don't need it. Click Create project and wait a moment for it to initialize.
In your new project dashboard, open the left sidebar and click Build → Realtime Database.
Click Create Database. A setup dialog will appear:
Click Enable to finish.
Once the database is created, you'll see a URL at the top of the page. It looks like this:
https://your-project-id-default-rtdb.europe-west1.firebasedatabase.app/
Save this URL — you'll send it to me along with the token.
Click the Rules tab at the top of the Realtime Database page. Replace whatever's there with this:
{
"rules": {
".read": "true",
".write": "true"
}
}
Click Publish to save.
DM me the database URL from step 4. Pair it with the Discord token from Part One — that's everything I need.
You'll be online within a few minutes after I receive both.