lol = {"a", "b"} if unpack(lol) == "a b" then print("yep") end
It never prints "yep", what is the reason behind that?
You can't compare tuples, much less like that. I highly suggest you go read up on how Tuples work.
t = {"a","b"} if unpack(t) == "a" and "b" then print('yep') end
"a b" would be considered as one element. thats the problem