Q:

lua not equal

== -- Equal to whatever
<= -- Less than or equal to
>= -- Greater than or equal to
< -- Less than
> -- Greater Than
~= -- Doesnt equal
# -- Length of something
1
local state = false

if state ~= true then
	print("No")
else
	print("Yes")
end
0

New to Communities?

Join the community