Premium software licenses, activation keys, and digital tools. Verified seller, instant key delivery, and 24/7 support via Discord.
After your payment is confirmed, your order will be delivered digitally. If any manual step is needed, open a support ticket and we will help you as fast as possible.
Most orders are delivered as quickly as possible after payment. In some cases delivery may take a little longer depending on the product or support availability.
We accept secure online payments through Stripe and PayPal. Available payment options may vary depending on your region and checkout method.
If you have any issue with your order, contact support with your order details and we will review the problem and help you with a fix or further guidance.
You can contact us through our Discord server or by opening a support ticket on the website. We recommend including your order information so we can help you faster.
Meet the people behind lsmods. Our team works hard to keep the store running, support customers, and build new features.
Restricted area. Enter admin credentials.
Click to upload or drag & drop ยท PNG JPG WEBP
Accept card payments. Get API keys from Stripe Dashboard โ Developers โ API Keys.
Accept PayPal and Venmo. Get Client ID from PayPal Developer portal.
| IP Address | Device | Status | Note | Date & Time |
|---|
Paste your Tawk.to Property ID to embed live chat, OR leave blank to use the built-in chat widget. To get a Tawk.to ID: sign up at tawk.to โ Property Settings โ copy the ID from the embed code.
Fill in your bot credentials. Customers who link Discord and have a purchase will get the Customer role assigned automatically.
Customer role. Right-click it โ Copy Role ID and paste above.bot, permissions: Manage Roles. Invite the bot to your server.const express = require('express');
const { Client, GatewayIntentBits } = require('discord.js');
const app = express();
app.use(express.json());
const client = new Client({intents:[GatewayIntentBits.Guilds]});
client.login(process.env.BOT_TOKEN);
app.post('/assign-role', async (req, res) => {
const { discordId, guildId, roleId, secret } = req.body;
if (secret !== process.env.API_SECRET)
return res.status(403).json({ error: 'Forbidden' });
try {
const guild = await client.guilds.fetch(guildId);
const member = await guild.members.fetch(discordId);
await member.roles.add(roleId);
res.json({ ok: true });
} catch(e) {
res.status(500).json({ error: e.message });
}
});
app.listen(3000);
BOT_TOKEN and API_SECRET (any secret string you choose โ add it to admin config below).This panel is restricted to the site owner only.