Using Prometheus in your Lua Application
git clone "https://github.com/levno-710/Prometheus.git"local Prometheus = require("prometheus.prometheus")
-- If you don't want console output
Prometheus.Logger.logLevel = Prometheus.Logger.LogLevel.Error
-- Your code
local code = 'print("Hello, World!")'
-- Create a Pipeline using the Strong preset
local pipeline = Prometheus.Pipeline:fromConfig(Prometheus.Presets.Strong)
-- Apply the obfuscation and print the result
print(pipeline:apply(code));Last updated