I'm trying to make a script that will randomly select a song. RANDOMLY. The script keeps on choosing it in order. here's the script:
01 | local Sound 1 = script.Lucid |
02 | local Sound 2 = script.DankTrain |
03 | local Sound 3 = script.LikeItLikeThat |
04 |
05 | wait()math.random( 1 , 3 ) |
06 |
07 | if 1 then |
08 | print ( "Lucid" ) |
09 | Sound 1 :Play() |
10 | wait( 88 ) |
11 | Sound 1 :Stop() |
12 | end |
13 | if 2 then |
14 | print ( "" ) |
15 | Sound 2 :Play() |
This question has been asked before, and already has an answer. If those answers do not fully address your question, then please ask a new question here.
Why was this question closed?