Hi, I want to call a function to get string from a number passed as parameter to set a variable, like:
set "variable" to "function.Call("get_string"(parameter))
but this is not allowed, how can I do this?
Develop games in your browser. Powerful, performant & highly capable.
function.Call("get_string", parameter)
thank you!