Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
1

Any Way To Refer To The Functions or Property by changing the propertyname to string?

Asked by
Yuuwa0519 197
5 years ago

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:

01local module = {}
02function module.blah1(bool)
03    if bool == true then
04        print("Blah1")
05    end
06end
07 
08function module.blah2(bool)
09    if bool == true then
10        print("Blah2")
11    end
12end
13return module

And the normal script will require this when Player Fires RemoteEvent.

1local blahModule = require(script.ModuleScript)
2 
3local function printBlah(plr,actionName)
4    --This Part Will Be Explained Later.
5end)
6 
7game.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?

1local function printBlah(plr,actionName)
2    blahModule.actionName(true)
3end)

Sorry for confusing text, and thankyou for any helps :D

1 answer

Log in to vote
2
Answered by
royaltoe 5144 Moderation Voter Community Moderator
5 years ago
Edited 5 years ago

yeah, you do both anonymous functions and regular functions like so:

MAIN SCRIPT

1module = require(game.Workspace.ModuleScript)
2 
3module["testFunction"]()
4module["testAnonFunction"]()

MODULE SCRIPT

01local module = {}
02 
03--anonymous function inside of a variable
04module.testAnonFunction = function()   
05    print("test anon function worked!")
06end
07 
08--regular function inside of module table
09function module.testFunction()
10    print("test function worked")
11end
12 
13return module

OUTPUT:

test function worked

test anon function worked!

0
Thankyou So Much:D My Script worked out Yuuwa0519 197 — 5y
0
thank YOU i only knew that you could do anonymous functions, not actual functions. hope your projects goes well royaltoe 5144 — 5y
Ad

Answer this question