My question was probably not clear so I'll give a brief explanation.
I have a variable called "ctc" this is a random number between 1 and 250
when ctc is 3 it changes a value to "angel", how would I do this for multiple numbers?
like if I wanted 3 or 4 or 5 or 6 to also be "angel"?
01 | local ctc = math.random( 1 , 250 ) |
02 |
03 | local try = ReplicatedStorage.PlayerStats [ id ] .Tries.Value |
04 | if try > 0 then |
05 | if ctc = = 3 then |
06 | event:FireServer() |
07 |
08 |
09 | script.Value.Value = "Angel" |
10 |
11 | --script.Parent.Continue.Visible = true |
12 | elseif |
13 |
14 | ctc = = 2 then |
15 | event:FireServer() |
You want to use the or
gate, which returns true
if one or more of the given parameters is true
. For example, if you want to return 'angel' if ctc
equals 3,4, or 5, then you would structure it like this:
1 | local ctc = math.random( 1 , 250 ) |
2 |
3 | if ctc = = 3 or ctc = = 4 or ctc = = 5 then |
4 | return "angel" |
5 | end |
If you have a large group of numbers that ctc
could equal, such as anything between 1 and 100, it is easier to structure it like this:
1 | local ctc = math.random( 1 , 250 ) |
2 |
3 | if ctc > = 1 or ctc < = 100 then |
4 | return "angel" |
5 | end |
or like this
1 | if ctc > = 3 and < = 5 |
Use or i.e
1 | if ctc = = 3 or ctc = = 4 or ctc = = 5 then |
Did it wrong before