Please always verify you are buying from redENGINE or a verified reseller. Buying from an unauthorized source will get your account suspended.
You can find who our verified resellers are by joining our public discord! Click here to join
We effectively eliminate the arduousness associated with the debugging of Lua code.
A better workflow
Effortlessly execute any code and obtain instantaneous results!
myTable = setmetatable({key1 = "value1"}, {
__index = function(mytable, key)
if key == "key2" then
return "metatablevalue"
else
return nil
end
end
})