rbx-reader
v1.5.10
Published
A NPM module for reading .rbxm(x) and .rbxl(x) files
Downloads
123
Readme
rbx-reader
A module that allows for reading of .rbxm and .rbxl files.
Huge thanks to @shiinazzz for helping to get the code into useful TypeScript form.
[!WARNING] The following packages on NPM appear to be malware:
- rbx-reader-ts
- rbx-api-ts
- solara-websocket-dll (wow) These are all carbon copies of this module with an obfuscated JS script added to it. Don't use these, and spread the word (and yes I reported them).
Usage
Basic reading:
const fs = require("node:fs")
const reader = require("rbx-reader")
const buf = fs.readFileSync("./path/to/roblox/file.rbxm") // Can also be an .rbxl
const result = reader.parseBuffer(buf)