What is the ROBLOSECURITY Token?
The ROBLOSECURITY token (also called.ROBLOSECURITY) is a cookie that authenticates your Roblox account. DBR needs this token to delete badges from your account on your behalf.
How to Get Your Token
DBR does not automatically grab your token. You must export it manually from your browser.Follow ro.py's Guide
The safest way to get your token is to follow the official ro.py tutorial on ROBLOSECURITY tokens.This guide provides step-by-step instructions for extracting your token from your browser’s cookies.
Copy Your Token
Your token will look like a long string starting with
_|WARNING:-DO-NOT-SHARE-THIS.--Copy the entire token value, including the prefix.Keep It Secure
Store your token securely. We recommend using an environment file instead of passing it directly on the command line.
Using Your Token
There are two ways to provide your token to DBR:Method 1: Command Line Argument (Not Recommended)
You can pass your token directly using the--rbx-token flag:
Method 2: Environment File (Recommended)
The safer method is to use an.env file. See Environment Files for detailed instructions.
Token Safety Checklist
Before using DBR, make sure:- You obtained your token from your own browser (not from a script)
- You’re using your own token (not someone else’s)
- You haven’t shared your token with anyone
- You’re storing it securely (preferably in an
.envfile) - Your
.envfile is in your.gitignoreif using version control
What DBR Does With Your Token
DBR uses your token to:- Authenticate API requests to Roblox
- Verify you own the badges being deleted
- Send deletion requests to Roblox’s badge API
- Send your token to any third-party services
- Store your token anywhere except in memory during execution
- Share your token with anyone
DBR is open source. You can review the code to verify how your token is used.

