Or statement

From Legacy Roblox Wiki
Revision as of 17:40, 9 July 2011 by >SoulStealer9875 (New page: The or statement comes in handy when you want to check one of the listed values is a certain value. <pre> soul = true food = false try = false if soul == true or food == true or try == t...)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigationJump to search

The or statement comes in handy when you want to check 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