Skip to content

Instantly share code, notes, and snippets.

View hornc's full-sized avatar
🇺🇦
𐌀𐌄𐌅

Charles Horn hornc

🇺🇦
𐌀𐌄𐌅
View GitHub Profile
@hornc
hornc / rb-cachebuster.py
Last active August 26, 2025 23:47 — forked from Hans5958/rb-cachebuster.py
Roblox Cache Buster: Simple script to convert Roblox cache files in `%appdata%\Local\Roblox\rbx-storage` folder to normal, openable files (if valid). Run the script inside `%appdata%\Local\Roblox\rbx-storage` normally in Windows OR ~/.var/app/org.vinegarhq.Sober/cache/sober/http for Sober under Linux. Now tested in Linux and original Windows wit…
from genericpath import isfile
import puremagic, io, os
os.makedirs('cachebuster', exist_ok=True)
# Tries to identify rbx file not identifiable by puremagic:
def rbx_format(data):
head = data.read(20)
if head.startswith(b'version'):
# https://devforum.roblox.com/t/roblox-filemesh-format-specification/326114