zet431 / roblox.js

ROBLOX API Wrapper

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Roblox.JS

Unofficial ROBLOX.JS API Wrapper.

Installation

Using npm:

$ npm i @rasi2661/roblox.js

Using yarn:

$ yarn add @rasi2661/roblox.js

Examples

Fetching a user's username:

const rbx = require("@rasi2661/roblox.js");

async function getusername(){
  let user = new rbx.User(1); //pass userid
  let username = await user.username();
  console.log(username);
  // ROBLOX
}
getusername()

About

ROBLOX API Wrapper


Languages

Language:TypeScript 100.0%