Skip to content

Instantly share code, notes, and snippets.

View ThatTimothy's full-sized avatar

ThatTimothy ThatTimothy

View GitHub Profile
@MrChickenRocket
MrChickenRocket / FileIOModule.lua
Created June 17, 2023 02:05
Very simple roblox file proxy. Read Write ListDirectory
local HttpService = game:GetService("HttpService")
local BASE_URL = "http://localhost:3090/"
local FileService = {}
function to_base64(data)
local b = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'
return ((data:gsub('.', function(x)
local r,b='',x:byte()