Hello, I have a problem with the function loadString because he wants to call functions as sub-functions from another script by the argument sub-functions
Code:
function input ()
outputChatBox("asd")
end
calling ( input() )
function calling ( func )
loadstring(func)() -- Did not work
pcall(func)() -- Did not work
outputChatBox("Taken functions: "..tostring(func) )
end