Any Way To Refer To The Functions or Property by changing the propertyname to string?
I know the title is a bit confusing, but I couldn`t think of any good name.
Anyways, what I want to ask is, is there any way to refer to properties or function by string?
For example, I have a module script that contains this:
02 | function module.blah 1 (bool) |
08 | function module.blah 2 (bool) |
And the normal script will require this when Player Fires RemoteEvent.
1 | local blahModule = require(script.ModuleScript) |
3 | local function printBlah(plr,actionName) |
7 | game.ReplicatedStorage.BlahRemote.OnServerEvent:Connect(printBlah) |
Now, If I were to make actionName either "Blah1" or "Blah2", Is there anyway to run the module function something like this?
1 | local function printBlah(plr,actionName) |
2 | blahModule.actionName( true ) |
Sorry for confusing text, and thankyou for any helps :D