Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

math.random isn't working for script, keeps choosing specifically? [closed]

Asked by 6 years ago

This question already has an answer here:

having math.random() Issue? SOLVED!

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:

01local Sound1 = script.Lucid
02local Sound2 = script.DankTrain
03local Sound3 = script.LikeItLikeThat
04 
05wait()math.random(1,3)
06 
07if 1 then
08    print("Lucid")
09    Sound1:Play()
10    wait(88)
11    Sound1:Stop()
12end
13if 2 then
14    print("")
15    Sound2:Play()
View all 26 lines...

Marked as Duplicate by RayCurse and DanzLua

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?