Skip to content

Instantly share code, notes, and snippets.

View nightcycle's full-sized avatar

Nightcycle nightcycle

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()
@stravant
stravant / createSharedToolbar.lua
Created August 15, 2022 07:48
createSharedToolbar Module
local CoreGui = game:GetService("CoreGui")
export type SharedToolbarSettings = {
ButtonName: string,
ButtonIcon: string,
ButtonTooltip: string,
ToolbarName: string,
CombinerName: string,
ClickedFn: () -> (),