Attention

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

Debug Lua code with ease

We effectively eliminate the arduousness associated with the debugging of Lua code.

App screenshot

Deploy faster

A better workflow

Effortlessly execute any code and obtain instantaneous results!

Cloud system.
By leveraging the power of cloud technology, we can expedite the achievement of your desired outcomes significantly.
Secure experience.
Rest assured that your valuable data is safeguarded with utmost care, as we employ robust cryptographic measures to ensure its impervious security.
Backups.
We offer an extensive array of meticulously curated, pre-built examples at your disposal, enabling you to explore a vast repertoire of practical solutions.
CodeExample1.lua
example2.lua
myTable = setmetatable({key1 = "value1"}, {
  __index = function(mytable, key)
      if key == "key2" then
        return "metatablevalue"
      else
        return nil
      end
  end
})