Skip to content

Instantly share code, notes, and snippets.

View maryjainerminecraftgit's full-sized avatar

maryjainerminecraftgit

View GitHub Profile
package.preload["exploits"] = function ()
local clases = {}
function class(name)
return function(tab)
if not tab then return clases[name] end
tab.__index, tab.__classname = tab, name
if tab.call then tab.__call = tab.call end
setmetatable(tab, tab)
clases[name], _G[name] = tab, tab
return tab