What I'm trying to do is getting out all the arguments a function is giving me, in this case its pcall.
I'm trying to do someting like this.
local Success,... = pcall(Function,Args) -- I want all the arguments as a table or someting i can unpack.
This doesn't work because of syntax error:
Expected identifier when parsing variable name, got '...'