Combined Code
frame 1 {
_root.createEmptyMovieClip('Glop', 1);
_root.createEmptyMovieClip('Glop2', 2);
_root.createEmptyMovieClip('Nova', 3);
}
frame 3 {
soundPlay3 = new Sound(Glop);
max3 = 19;
min3 = 1;
rand3 = Math.round(Math.random() * (max3 - min3)) + min3;
soundPlay3.attachSound('~C4 - Pussyslime' + rand3 + '.mp3');
soundPlay3.setVolume(100);
soundPlay3.start(0, 1);
}
frame 4 {
soundPlay2 = new Sound(Glop2);
max2 = 10;
min2 = 2;
rand2 = Math.round(Math.random() * (max2 - min2)) + min2;
soundPlay2.attachSound('Jupu (' + rand2 + ').wav');
soundPlay2.setVolume(100);
soundPlay2.start(0, 1);
}
frame 5 {
soundPlay1 = new Sound(Nova);
max1 = 21;
min1 = 1;
rand1 = Math.round(Math.random() * (max1 - min1)) + min1;
soundPlay1.attachSound('Nova Fucked by Human (' + rand1 + ').mp3');
soundPlay1.setVolume(40);
soundPlay1.start(0, 1);
}
frame 16 {
gotoAndPlay(1);
}