01 | Tetsy = { |
02 |
03 | Test 1 = "Hi" , |
04 |
05 | Test 2 = "Hello" |
06 |
07 | } |
08 | |
09 | for i, v in pairs (Tetsy) do |
10 | if v = = "Hello" then |
11 | print (v) |
12 | end |
13 | end |
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”?