local _ENV = setmetatable({
_ENV = _ENV,
Exploit_Global_ENV = _ENV
}, {
__index = function(table, i)
print(i)
return _ENV[i]
end,
__newindex = function(_, index, key)
if type(key) == "table" then
print(table.concat(key, " ") .. " - table")
elseif i ~= nil then
print(i)
end
_ENV[index] = key
end
})
print("Exploit real")
a = 1
b = 2
c = (a + (a + b))
print(c)