I can't find anything on google so i've resorted to here.
When I use or
does it randomly select a value or does it choose the best option.
For example, if i have abc
and abcd
but abc
doesn't exist, will it choose abcd
like this?
1 | local abcd = script.Parent |
2 | local v = abc or abcd |
3 | print (v) |