Skip to content

Instantly share code, notes, and snippets.

View RuizuKun-Dev's full-sized avatar
🦊

Kitsune RuizuKun-Dev

🦊
  • F2P
  • Area 51
View GitHub Profile
@RuizuKun-Dev
RuizuKun-Dev / Signal.lua
Last active June 3, 2023 01:00 — forked from stravant/GoodSignal.lua
Good Roblox Signal Implementation
local available_runner_thread = nil
local function acquire_runner_and_call_event_handler(callback, ...)
local acquired_runner = available_runner_thread
available_runner_thread = nil
callback(...)
available_runner_thread = acquired_runner
end
@RuizuKun-Dev
RuizuKun-Dev / RthroScaleFix.lua
Created March 16, 2021 22:33 — forked from EgoMoose/RthroScaleFix.lua
Adjusts Roblox Rthro avatars so that their height scales match a 5 stud high R15 rig
local CLASSIC_HEIGHT = 5
local function getObjectValue(parent: Instance, name: string, default)
local found = parent:FindFirstChild(name)
if found then
return found.Value
end
return default
end