View difference between Paste ID: 15zETPpM and vh64H74M
SHOW: | | - or go back to the newest paste.
1
--[[
2
    
3
    RAINDROP DEFAULT SCRIPTS
4
    
5
    NAME            ::    AUTHOR    ::    DATE
6
    Hitler            ::    brack4712    ::    10/29/16
7
    
8
    INSTRUCTIONS
9
    [*] Change the values for the following to your liking:
10
        > Volume
11
        > Looped
12
    [*] Press Execute!
13
    
14
    ENJOY!
15
    
16
--]]
17
18
local Volume = tonumber("1")
19
local Looped = true
20
21
--- DO NOT EDIT BELOW THIS LINE UNLESS YOU KNOW WHAT YOU ARE DOING! ---
22
23
24
local sound1 = Instance.new("Sound",game.Workspace)
25
sound1.Volume = Volume
26
sound1.Looped = Looped
27
sound1.SoundId = "rbxassetid://316403490"
28
sound1.Name = "Ranter1"
29
local sound2 = Instance.new("Sound",game.Workspace)
30
sound2.Volume = Volume
31
sound2.Looped = Looped
32
sound2.SoundId = "rbxassetid://316403787"
33
sound2.Name = "Ranter2"
34
local sound3 = Instance.new("Sound",game.Workspace)
35
sound3.Volume = Volume
36
sound3.Looped = Looped
37
sound3.SoundId = "rbxassetid://316403844"
38
sound3.Name = "Ranter3"
39
local sound4 = Instance.new("Sound",game.Workspace)
40
sound4.Volume = Volume
41
sound4.Looped = Looped
42
sound4.SoundId = "rbxassetid://316403916"
43
sound4.Name = "Ranter4"
44
45
if Looped == true then
46
    while true do
47
        wait(1)
48
        sound1:Play()
49
        wait(3.7)
50
        sound1:Stop()
51
        sound2:Play()
52
        wait(3.7)
53
        sound2:Stop()
54
        sound3:Play()
55
        wait(3.448)
56
        sound3:Stop()
57
        sound4:Play()
58
        wait(4.911)
59
        sound4:Stop()
60
        end
61
else
62
    sound1:Play()
63
    wait(3.7)
64
    sound1:Stop()
65
    sound2:Play()
66
    wait(3.7)
67
    sound2:Stop()
68
    sound3:Play()
69
    wait(3.448)
70
    sound3:Stop()
71
    sound4:Play()
72
    wait(4.911)
73
    sound4:Stop()
74
end