I want to make a chance system, I used math.random, however I want it so when it picks the number 10, that player gets a rare item, if it gets 1-9 the player gets a common item, is there a way to do that?
Try setting a variable to the random, an example:
1 | local chance = math.random( 1 , 10 ) --Creates a new variable, 'chance', and sets a random number to it between 1 and 10. |
2 | print (chance) --Tells you in Output what you got. |
3 | if chance = = 10 then |
4 | --code to give the player a rare item |
5 | else |
6 | --code to give the player a common item |
7 | end |
Hope I helped!