If your string is in the format “somefunction(1,2)” then you’ll need to parse the arguments in order to pass them to SendMessage. I’m not familiar with the string library in Unityscript, but you basically grab the substring between ‘(’ and ‘)’ then split on ‘,’ and place it into a generic data structure so you can pass it as a parameter in SendMessage. Somebody may be able to help you with that.