So I am wanting to make a script that plays a random id from a table. the table name is "local ids"
I need this for a shop im making..
1 | local pre = { "268763467" , "261244793" , "142570249" , "165508381" } --Example songs |
2 | local whatpre = pre [ math.random( 1 ,#pre) ] |
3 | music.SoundId = ( "http://www.roblox.com/asset/?id=" ..whatpre) |
4 | music:Play() |