BadScript

Logical Not Operator(!)

Returns True if left and right are true

table = {
	a = true,
	op_LogicalNot = function(other)
	{
		return {
			a = !a
		}
	}
}

b1 = !table //b1.a == false

List of All Operators