A simple, all-in-one SDK for building self-bots on Fluxer.
fluxer-selfbot is a fork of the FluxerJS core, specifically adjusted for self-bot development. It bundles everything you need (REST, WebSockets, Builders, and Voice) into a single package to make it easier to get started without complex configurations.
- 📦 All-in-One: Access core logic, REST, and Gateway from a single import.
- 🕵️ Basic Stealth: Includes automatic client spoofing to help mimic a standard browser or desktop client.
- 🎙️ Voice Support: Support for joining channels and playing audio is included by default.
- ⚡ Bun friendly: Designed to run smoothly on Bun, but compatible with other runtimes.
- 🛡️ Typed: Fully written in TypeScript for better developer experience.
You can install it using Bun:
bun add fluxer-selfbotimport { Client, Events } from 'fluxer-selfbot';
const client = new Client();
client.on(Events.Ready, () => {
console.log(`Connected as ${client.user?.username}`);
});
client.on(Events.MessageCreate, async (message) => {
if (message.content === '!ping') {
await message.edit({ content: '🏓 **Pong!**' });
}
});
await client.login('YOUR_USER_TOKEN');- 📖 Documentation: Full API reference and guides.
- 🧪 Examples: Simple scripts and patterns to learn from.
- 📦 Internal Packages: The modular parts under the hood.
Self-botting is against the Terms of Service of most messaging platforms. Using this SDK is at your own risk. The developers are not responsible for any account bans or other consequences. Please use responsibly.
Built with ❤️ for the community.