Skip to content

Instantly share code, notes, and snippets.

View EliteCommando141's full-sized avatar

Elite_Commando EliteCommando141

  • Brazil
  • 09:04 (UTC -03:00)
View GitHub Profile
@Hans5958
Hans5958 / rb-cachebuster.py
Last active January 26, 2026 18:34
Roblox Cache Buster: Simple script to convert Roblox cache files on `%temp%/Roblox/http` folder to normal, openable files (if valid). Run the script inside `%temp%/Roblox/http`.
from genericpath import isfile
import puremagic, io, os
os.makedirs('cachebuster', exist_ok=True)
for file_name in os.listdir('.'):
if not os.path.isfile(file_name):
continue
# print(file_name)