This is not what i want. I don’t want to select these dots and delete them countless times manually.
I did try the Find + Replace feature, but for some reason they detect the characters, but replacing doesn’t work at all.
Is there a better way to deal with this? Any help is appreciated.
So you want basically when it prints random generated numbers or whatever you’re printing to the output you want it also to copy it and paste it into a script where you can visibly see it?
local t = {}
for i = 1, 10 do
table.insert(t, math.random())
end
local function printTable(t)
local str = ""
for i, v in ipairs(t) do
str = str .. string.format("\t[%d] = %f,\n", i, v)
end
print(string.format("local tab = {\n%s}", str))
end
printTable(t)
Before this is right-clicked the output window background and copied.
I fixed the character issue by right-clicking the printed text on the output instead and the weird characters only appeared on one line