of     1   

Cshef
#184802338Saturday, March 05, 2016 6:22 PM GMT

How would you choose something random from a table?
LegendaryAccount
#184802556Saturday, March 05, 2016 6:25 PM GMT

Table = {1,3,5,7,8} RandomElement = Table[math.random(#Table)]
darthpyro
#184802609Saturday, March 05, 2016 6:25 PM GMT

yourTable = {...} randomElement = yourTable[math.random(1, #yourTable)]

    of     1