Skip to content

Instantly share code, notes, and snippets.

View puyoxyz's full-sized avatar

puyo puyoxyz

View GitHub Profile
@puyoxyz
puyoxyz / main.js
Last active July 11, 2022 04:20
Simple Roblox asset downloader in NodeJS
// this code is licensed under the GPL 3.0, see below the code for a copy of the license
console.log('simple roblox asset downloader by puyo <hi@puyo.xyz> <https://github.com/puyoxyz>');
console.log('this is specifically for shirts and pants');
const cdnPath = 'https://assetdelivery.roblox.com/v1/asset/?id=';
let request; let xml2js; let parser; let fs;
try {