Skip to content
This repository has been archived by the owner on May 6, 2023. It is now read-only.

roblox-js/core

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

View on NPM View on Yarn View on Github Typescript Typescript

Overview

Roflare allows you to interact with Roblox's web API in a variety of ways. A few examples are:

  • [❌]Fetch information about an experience
  • [✅] Fetch information about a user
  • [❌] Manage account using .ROBLOSECURITY

Installation

npm i roflare
yarn add roflare

Example

To learn more about Roflare, visit the documentation

const { GetUserAvatar } = require('roflare');

(async () => {
    console.log(await GetUserAvatar(4495638042))
})()