Skip to content

Instantly share code, notes, and snippets.

View NobleDraconian's full-sized avatar

Noble_Draconian NobleDraconian

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()
-- Syntax
-- lune script SUBCOMMAND ==flag value
-- lune scri[t ==flag value SUBCOMMAND
local function parseFlags(arguments: { string })
local result = {}
for index, keyOrValue in arguments do
if keyOrValue:find("==") then
local shouldBeValue = arguments[index + 1]
@lrvick
lrvick / github-troll.md
Last active May 3, 2024 16:20
Trolling Github's DMCA repo with their own security flaws.
@Fraktality
Fraktality / Zones.lua
Last active October 31, 2023 20:02
Fast trigger volumes
local RunService = game:GetService("RunService")
-- compile an oriented bounding box into a scaled CFrame
local function compileBBox(cframe: CFrame, size: Vector3)
return CFrame.fromMatrix(
cframe.Position,
cframe.XVector/size.X,
cframe.YVector/size.Y,
cframe.ZVector/size.Z
):Inverse()
-- black frames not included
local RunService = game:GetService("RunService")
local Workspace = game:GetService("Workspace")
local Camera = Workspace.CurrentCamera
local Module = {}
Module.Position = UDim2.new(0, 0, 0, 0)