rblx-rip
v1.2.1
Published
An open-source roblox ripping tool
Downloads
11
Readme
rblx-rip
An asset ripper for ROBLOX.
How to install package (works on typescript and javascript)
npm install rblx-rip --save
Examples
Below you will find some examples to help you:
Typescript
// Requirements
import { RRip } from "rblx-rip"
// Test
const _RRip = new RRip();
// Downloading an audio
(async () => {
_RRip.audio(639750143);
})();
Javascript
// Requirements
const RRip = require("rblx-rip")
// Test
const _RRip = new RRip.RRip();
// Downloading an audio
(async () => {
_RRip.audio(639750143);
})();