Skip to content

thefakewater/boblox.ts

Repository files navigation

boblox.ts

boblox.ts is still in alpha

NPM package Join our discord server!

AboutInstallationQuickstartDocumentationLicense

About

boblox.ts is a object-oriented NodeJS module which allows you to interact with the Roblox API.

Prerequisites

Installation

Install boblox.ts

# Using npm:
$ npm install boblox.ts

# Using yarn:
$ yarn add boblox.ts

Quickstart

  1. Get your .ROBLOSECURITY cookie.
  1. Write code
    const boblox = require('boblox.ts');
    const client = new boblox.Client();
    
    client.on('ready', async () => {
      console.log('We logged in as ' + client.user.name);
      await client.user.declineAll();
    });
    client.login('_|WARNING:-DO-NOT-SHARE-THIS.--Sharing-this-will-allow-someone-to-log-in-as-you-and-to-steal-your-ROBUX-and-items.|_');

Note: use dotenv to hide your cookie from your source code.

License

GPL-3.0 License