boblox.ts
v0.8.1-alpha
Published
Interact in real-time with the Roblox API
Downloads
9
Readme
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
- Get your
.ROBLOSECURITY
cookie.
- 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.