You can do something like this:
or shorter way:
Code:
if twilight == true or objA == true then
-- do something
end
or shorter way:
Code:
if twilight or objA then
-- do something
end