View difference between Paste ID: P5BWHgFG and N0ufLyqv
SHOW: | | - or go back to the newest paste.
1
local Sound = Instance.new("Sound")
2
Sound.Parent = workspace
3
Sound.Volume = 50
4
Sound.SoundId = "rbxassetid://862198133"
5
Sound:Play()
6
wait(1)
7
8-
local e = game.workspace:GetChildren()
8+
local BodyColors = game.workspace
9-
e:remove()
9+
10
for i=1, #BodyColors do
11
    if BodyColors[i]:IsA("Part") then
12
        BodyColors[i]:Destroy()
13
    end
14
end
15
16
wait(2)
17
Sound:Destroy()