I want to create a customizedprint()
function that would print the arguments to the console and then also put them in a StringValue
.
I read an article on how to do that. My code is as the following:
01 | function printConsole(...) |
02 | coroutine.wrap( function (arg) |
03 | local toPrint = "" |
04 | print (arg) |
05 | for _,v in pairs (arg) do |
06 | toPrint = toPrint.. tostring (v) |
07 | end |
08 | print (toPrint) |
09 | workspace.ToPrint.Value = workspace.ToPrint.Value..toPrint.. "\n" |
10 | end )(arg) |
11 | end |
12 | print ( "Hi" , "there!" ) |
At the for
loop it breaks because arg
is nil
, not a table
.
At print(arg)
it says: "Hi" so it thinks arg
is a string
.
There is no need for coroutine and you pass a nil value anyway. Here:
01 | function printConsole(...) |
02 | local arg = { ... } |
03 | local toPrint = "" |
04 | print (arg) |
05 | for _,v in pairs (arg) do |
06 | toPrint = toPrint.. tostring (v) |
07 | end |
08 | print (toPrint) |
09 | workspace.ToPrint.Value = workspace.ToPrint.Value..toPrint.. "\n" |
10 | end |
11 | print ( "Hi" , "there!" ) |
FYI, roblox allows you to redefine 'print' function itself, so you can do that.