I\'m making my first Lua program with the console, and I need to find out how to remove all the text in the console without just appending a ton of \\n\'s.
Sorry for the late answer, but if anyone check this post here's a way to do it :
if not os.execute("clear") then os.execute("cls") elseif not os.execute("cls") then for i = 1,25 do print("\n\n") end end
This will work on any os.