Skip to content

Instantly share code, notes, and snippets.

View unrooot's full-sized avatar
☯️

unrooot

☯️
View GitHub Profile
@Fraktality
Fraktality / Dumpster.lua
Last active April 9, 2024 00:22
Some people just want to watch the world burn
local Dumpster = {} do
Dumpster.__index = Dumpster
local finalizers = setmetatable(
{
["function"] = function(item)
return item()
end,
["Instance"] = game.Destroy,
["RBXScriptConnection"] = Instance.new("BindableEvent").Event:Connect(function() end).Disconnect,