Lua Script Equivalent To "<>" Or "!="(Not Equal To)? (SOLVED)

Hi,

What is the Lua script equivalent to “<>” or “!=”(not equal to)?
Let us know, thanks!

Jesse

Use “~=”

Thanks, that works…

You can also do

not (a == b)

I tend to do that, since I can never remember how to write ~ on Czech keyboard =P

1 Like

Ok, that works too, thanks!