Skip to content

Cleboost/fluxer-selfbot

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

118 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

🤖 fluxer-selfbot

A simple, all-in-one SDK for building self-bots on Fluxer.

npm version License Bun


💡 What is fluxer-selfbot?

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.

�️ Key Features

  • 📦 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.

🚀 Getting Started

Installation

You can install it using Bun:

bun add fluxer-selfbot

Simple Example

import { 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');

📚 Resources


⚠️ Important Disclaimer

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.

About

A fluxer selfbot wrapper forked from @fluxerjs/core. NPM: https://www.npmjs.com/package/fluxer-selfbot

Topics

Resources

License

Stars

Watchers

Forks

Contributors

Languages

  • TypeScript 99.6%
  • JavaScript 0.4%