Hello I am trying to pass a variable as a functions parameter and I am having problems when I am passing it through as a non variable ex SetOption(optionTable[1]) works just fine but I want it to conditionally pass through a different value from the table.
Current Attempt:
SetOption(option)
if x then
getgenv().option = optionTable[1]
end
if y then
getgenv().option = optionTable[2]
end
if z then
getgenv().option = optionTable[3]
end
But in return it only returns the first value from the table. Any idea on how I can properly achieve what I am trying to do here?