Options
All
  • Public
  • Public/Protected
  • All
Menu

boblox.ts

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 noblox.js

# Using yarn:
$ yarn add noblox.js

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

Generated using TypeDoc