A ready-to-use Discord bot that looks up Murder Mystery 2 item values using the RBLXValue API.
Built with discord.js v14.
/item [name]— Look up any MM2 item value with demand and stability/set [name]— Look up a full MM2 set with all items and total value/profile [username]— Look up a RBLXValue user profile and inventory value
git clone https://github.com/un6107617/mm2-value-discord-bot.git
cd mm2-value-discord-bot
npm installGo to rblxvalue.com/developer and log in with your Roblox account to create a free API key. Free keys include 30 requests per minute — enough for most bots.
- Go to discord.com/developers
- Click New Application
- Go to Bot and copy your token
- Go to OAuth2 → URL Generator, select
botandapplications.commands, copy the invite URL
cp .env.example .envFill in your .env:
DISCORD_BOT_TOKEN=your_bot_token_here
DISCORD_CLIENT_ID=your_client_id_here
RBLXVALUE_API_KEY=rbx_your_key_here
node bot.jsOr with PM2:
npm install -g pm2
pm2 start bot.js --name mm2-bot
pm2 save| Command | Description | Requires API key |
|---|---|---|
/item [name] |
Item value, demand, stability | No |
/set [name] |
Set total value and item list | No |
/profile [username] |
User profile and inventory | Yes (free) |
The free RBLXValue API key supports 30 requests per minute. For higher volume bots, upgrade at rblxvalue.com/developer.
Free plan users must include Data from rblxvalue.com in embed footers. This bot does this by default.
Full API docs at docs.rblxvalue.com
- RBLXValue.com — MM2 value comparison platform
- docs.rblxvalue.com — API documentation
- Get API Key — Free API key
- Discord Server — Support and community
RBLXValue API — free public MM2 value API.
MIT