Tetsy = { Test1 = "Hi", Test2 = "Hello" } for i, v in pairs(Tetsy) do if v == "Hello" then print(v) end 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"?