View difference between Paste ID: A32FVjJD and GuxLw11M
SHOW: | | - or go back to the newest paste.
1
--XxBillyTheNoscoperxX
2-
--distortion lololololololol
2+
--distortion=900
3
local plr = game.Players.LocalPlayer
4
plrgui = plr.PlayerGui
5
local base = Instance.new("ScreenGui",plrgui)
6
local bground = Instance.new("Frame",base)
7
base.Name = "lol"
8
bground.Name = "bground"
9
bground.Position = UDim2.new(0.4,0,0.3,0)
10
bground.Size = UDim2.new(0.2,0,0.22,0)
11
bground.BackgroundColor3 = Color3.fromRGB(0,0,0)
12
bground.BorderColor3 = Color3.fromRGB(163,162,165)
13
bground.BorderSizePixel = 6
14
local tbox = Instance.new("TextBox",bground)
15
tbox.Name = "tbox"
16
tbox.Text = "Sound ID"
17
tbox.Position = UDim2.new(0.15,0,0.25,0)
18
tbox.Size = UDim2.new(0.7,0,0.25,0)
19
tbox.TextWrapped = true
20
tbox.TextScaled = true
21
tbox.BackgroundColor3 = Color3.fromRGB(255,255,255)
22
tbox.BorderColor3 = Color3.fromRGB(25,25,25)
23
tbox.BorderSizePixel = 5
24
local submit = Instance.new("TextButton",bground)
25
submit.Name = "submit"
26
submit.Text = "Submit"
27
submit.Position = UDim2.new(0.15,0,0.6,0)
28
submit.Size = UDim2.new(0.7,0,0.25,0)
29
submit.TextScaled = true
30
submit.TextWrapped = true
31
submit.BackgroundColor3 = Color3.fromRGB(200,200,200)
32
--time for the goodies amirite
33
function sound()
34
local newsound = Instance.new("Sound",workspace)
35
newsound.Name = "earbleed"
36
newsound.SoundId = "rbxassetid://"..tbox.Text
37
newsound.Looped = true
38
newsound:Play() 
39
local earbleep = Instance.new("DistortionSoundEffect",newsound)
40
earbleep.Enabled = true
41
earbleep.Level = 100000001
42
earbleep.Priority = 55
43
end
44
submit.MouseButton1Down:connect(sound)