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

How would I make a table print a variable with the data in it?

Asked by 6 years ago
01Tetsy = {
02 
03Test1 = "Hi",
04 
05Test2 = "Hello"
06 
07}
08          
09for i, v in pairs(Tetsy) do   
10if v == "Hello" then   
11print(v)
12end
13end

When v == “Hello” I want it to print the variable. In this case, it is “Test1”. But it instead only prints “Hello”. How would I make it so it prints “Test1”?

Answer this question