-- You can create a new file with LuA using the io.open() function
-- Example:
local file = io.open("test.txt", "w")
file:write("Hello World")
file:close()
-- This will create a new file named test.txt, write "Hello World" inside it, and then close it.