-- This Script is Part of the Prometheus Obfuscator by levno-710 -- -- Vmify.lua -- -- This Script provides a Complex Obfuscation Step that will compile the entire Script to a fully custom bytecode that does not share it's instructions -- with lua, making it much harder to crack than other lua obfuscators local Step = require("prometheus.step"); local Compiler = require("prometheus.compiler.compiler"); local Vmify = Step:extend(); Vmify.Description = "This Step will Compile your script into a fully-custom (not a half custom like other lua obfuscators) Bytecode Format and emit a vm for executing it."; Vmify.Name = "Vmify"; Vmify.SettingsDescriptor = {} function Vmify:init(_) end function Vmify:apply(ast) -- Create Compiler local compiler = Compiler:new(); -- Compile the Script into a bytecode vm return compiler:compile(ast); end return Vmify;