5.0.0 • Published 12 months ago

robuxfactory.js v5.0.0

Weekly downloads
-
License
MIT
Repository
-
Last release
12 months ago

robuxfactory.js

Download Package

npm i robuxfactory.js

Import Files

const data = require('robuxfactory.js');
// OR
import data from 'robuxfactory.js';

User

const user = 'user id';
const userInfo = await data.fetchUser(user);
console.log(userInfo);
console.log(userInfo.balance);

Tops Users

const topUsers = await data.fetchTops({ item: 'balance', limit: 10 });
console.log(topUsers);
//Note : Item includes 'balance' and 'transactionsTotal' only

GroupInfo

const currentGroup = await data.fetchGroup();
console.log(currentGroup);
console.log(`Name: ${currentGroup.name}`);
console.log(`Stock: ${currentGroup.funds}`);
console.log(`Pending: ${currentGroup.pendingRobux}`);

Group Request Join

const robloxUsername = 'Username in roblox';
const currentGroup = await data.fetchGroup();
const requestInfo = await data.fetchRequest(robloxUsername);
console.log(requestInfo);
console.log(`Group Name: ${currentGroup.name}`);
console.log(`On Request Time: ${requestInfo.requestDate}`);
console.log(`On Join Group Time: ${requestInfo.joinDate}`);

Users Keys

balance - Get balance
discount - Get discount %
transactionsTotal - Get the total number of withdrawal 
transactionsCount - Get the number of withdrawals
robloxUsername - Get saved roblox username
isBlacklisted - Is the user in blacklist => true, false
isClient - Is the user a client => true, false
isSuperClient - Is the user a super client => true, false
isTransfer - Is the user robux withdrawal => true, false
language - Get user language => en, ar

Developer

By Slayver#0680
5.0.0

12 months ago

4.3.0

1 year ago

4.2.0

1 year ago

4.1.0

1 year ago

4.0.0

1 year ago

3.6.0

1 year ago

3.5.0

1 year ago

3.4.0

1 year ago

3.3.0

1 year ago