Is there any way to clear the output from a script?

Just wondering!!!

Can you please elaborate on what you mean exactly?

There is a broom button that clears the output tab, hope this helps!

If Lumo1330’s post is what you mean, here is an image of what they are referring to:

yh but is there a way to do it from a script

yh but is there a way to do it from a scriptttttttttt

That’s the only way I know, they both have the same results so ok.

Unfortunately, the closest you can get to doing it via script is to spam /n a bunch of times.

This can be achieved either through this:

output = ""
for i = 1, 250 do
    output += "\n"
end
print(output)

or just

for i = 1, 250 do
    print("\n")
end

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.