Skip to content

Instantly share code, notes, and snippets.

View magicoal-nerb's full-sized avatar
💭
leelee,e

magical_noob magicoal-nerb

💭
leelee,e
View GitHub Profile
@magicoal-nerb
magicoal-nerb / quakec-bhop-rbx.lua
Last active April 17, 2025 22:50
really simple quake movement in roblx
-- poopbarrel/magical_noob
-- @submodule quakec
-- @description another quake movement reimplementation ig
-- Physics
local XZ = Vector3.new(1.0, 0.0, 1.0);
local CAPSULE_FLOOR_ANGLE = 0.7;
-- Convars
local PL_HITBOX_SIZE = Vector3.new(4, 6, 4);
-- Average stack based JSON parser i guess
local function map(str)
local out = {};
for word in str:gmatch('.') do
out[word] = true;
end
return out;
end