Answered by
6 years ago Edited 6 years ago
Basically just a writeup of what incapaxian said
The :
operator is just "syntax sugar" for "." but with the first argument being the object you're calling from. "Syntax sugar" is a term for something which is syntactically equivalent to something else, but that is easier and cleaner to use. If you ever use Haskell, get ready for a lot of syntax sugar, because the language is basically built on it.
For example, these are equivalent:
1 | game:GetService( "Players" ) |
2 | game.GetService(game, "Players" ) |
Furthermore, in Lua, the .
operator is just sugar for an array access. The following are equivalent
Every different data structure in Lua is just a table wearing a different hat, so these rules apply to basically any data structure, including objects.
Therefore, this should do what you want:
1 | function methodCall(owner, methodName, arguments) |
2 | owner [ methodName ] (owner, unpack (arguments)) |
5 | methodCall(game, "GetService" , { "Players" } ) |