Can two values be true in a or statement

Can Both values be true when using a “or”?

So what I’m trying to do is create a brick, with a decal rotate where ever the camra is, However when I replicate the brick, the second breaks (I know why) .
I’m using or instead of :GetChildren(), because I don’t understand how to get a specified part from :GetChildren() If the answer to my question is no, can you please explain how to get a specified child using :GetChildren(), if their needs to be a indicator, mine would be magnitude.

The whole point of an “or” statement is for the to code run if either or both are true.
So yes, two values CAN be true in an or statement.

2 Likes

Script

local TrueVar = true
local FalseVar = false

print(TrueVar or FalseVar)

Expected Output

true

Script

local TrueVar = true
local TrueVarTwo = true

print(TrueVar or TrueVarTwo)

Expected Output

true
1 Like