hi, this is a lua5.1 bytecode parser i've made.. usage is
byte[] file = File.ReadAllBytes(path);
Parser.parser(file);or if u wanna use the cli u can do
dotnet run input.luacvar path = args.Length > 0 ? args[0] : "input.luac"; // change the luac file to whatever u like