Or statement: Difference between revisions

From Legacy Roblox Wiki
Jump to navigationJump to search
>SoulStealer9875
'check if'
>SoulStealer9875
No edit summary
Line 9: Line 9:
     print 'soul is always true'
     print 'soul is always true'
end
end
> soul is always true
</pre>
</pre>

Revision as of 17:41, 9 July 2011

The or statement comes in handy when you want to check if one of the listed values is a certain value.

soul = true
food = false
try = false

if soul == true or food == true or try == true then
    print 'soul is always true'
end


> soul is always true