These are the 20 characters in order to ask a question...
if hi ~= true then
...
a ~= b is a is not equal to b.
a ~= b
a
b
Most programming languages use !=; Lua just decides to be different.
!=
Alternatively you could use not (a == b).
not (a == b)