ZTzTopiaa   1 Posted May 14 please give me compiler i cant compile my script 0 Share this post Link to post Share on other sites
Halo20231   1 Posted August 14 Compiler: while true do local sel = gg.prompt({"Select file:"}, {gg.getFile()}, {"file"}) if not sel then break else local file = loadfile(sel[1]) if file ~= nil then local out = sel[1] .. ".bin" local test = io.open(out, "w") test:write(string.dump(file, true)) test:close() gg.alert("Success!\nFile saved: "..out) break else gg.alert("Cannot load file!") end end end 1 Share this post Link to post Share on other sites