2.0.0 • Published 5 years ago

sanger-roblox v2.0.0

Weekly downloads
-
License
ISC
Repository
-
Last release
5 years ago

Roblox api referential

This is a list of useful objects from roblox users, supported by Roblox at http://api.roblox.com/docs.

Install

$ npm install --save sanger-roblox

Usage

const roblox = require('sanger-roblox');


roblox.getInfo('UsernameRoblox', (data) => {
    if (!data) return console.log('User not found!');   
    console.log(`Roblox UserName: ${data.Name}, Roblox Id: ${data.Id}, Roblox Friends: ${data.TotalFriends}`);

});

OBJECTS

# Name         : Username in roblox.
# Id           : Id in roblox.
# Online       : State in roblox.
# TotalFriends : Total of friends in roblox.
# Avatar       : Avatar in roblox.
# AvatarMin    : Avatar mode miniature in roblox.
# ListFriends  : Friends list in roblox.
# ListBadges   : List of badges in roblox.
# ListGroup    : Groups list in roblox. 

REFERENCE

ROBLOX API DOC Web