Advertisement
plytalent

edit louder music player

May 12th, 2018
200
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.97 KB | None | 0 0
  1. --XxBillyTheNoscoperxX
  2. --distortion lololololololol
  3. warn("edit add low pass and high pass")
  4. local plr = game:GetService("Players").LocalPlayer
  5. plrgui = plr.PlayerGui
  6. local base = Instance.new("ScreenGui",plrgui)
  7. local bground = Instance.new("Frame",base)
  8. base.Name = "lol"
  9. bground.Name = "bground"
  10. bground.Position = UDim2.new(0.4,0,0.3,0)
  11. bground.Size = UDim2.new(0.2,0,0.22,0)
  12. bground.BackgroundColor3 = Color3.fromRGB(0,0,0)
  13. bground.BorderColor3 = Color3.fromRGB(163,162,165)
  14. bground.BorderSizePixel = 6
  15. local tbox = Instance.new("TextBox",bground)
  16. tbox.Name = "tbox"
  17. tbox.Text = "Sound ID"
  18. tbox.Position = UDim2.new(0.15,0,0.25,0)
  19. tbox.Size = UDim2.new(0.7,0,0.25,0)
  20. tbox.TextWrapped = true
  21. tbox.TextScaled = true
  22. tbox.BackgroundColor3 = Color3.fromRGB(255,255,255)
  23. tbox.BorderColor3 = Color3.fromRGB(25,25,25)
  24. tbox.BorderSizePixel = 5
  25. local submit = Instance.new("TextButton",bground)
  26. submit.Name = "submit"
  27. submit.Text = "Submit"
  28. submit.Position = UDim2.new(0.15,0,0.6,0)
  29. submit.Size = UDim2.new(0.7,0,0.25,0)
  30. submit.TextScaled = true
  31. submit.TextWrapped = true
  32. submit.BackgroundColor3 = Color3.fromRGB(200,200,200)
  33. --time for the goodies amirite
  34. function sound()
  35. local newsound = Instance.new("Sound",workspace)
  36. newsound.Name = "earbleed"
  37. newsound.SoundId = "rbxassetid://"..tbox.Text
  38. newsound.Looped = true
  39. newsound:Play()
  40. local effect1 = Instance.new("ChorusSoundEffect",newsound)
  41. effect1.Mix = 0.25
  42. effect1.Depth = 0.15
  43. effect1.Rate = 0.5
  44. effect1.Enabled = true
  45. effect1.Priority = 0
  46. local effect2 = Instance.new("CompressorSoundEffect",newsound)
  47. effect2.Enabled = true
  48. effect2.Attack = 0.38
  49. effect2.GainMakeup = 1
  50. effect2.Ratio = 1
  51. effect2.Release = 4.5
  52. effect2.Threshold = -25
  53. local effect3 = Instance.new("DistortionSoundEffect",newsound)
  54. effect3.Level = 0.5
  55. local effect4 = Instance.new("EqualizerSoundEffect",newsound)
  56. effect4.Name = "lc"
  57. effect4.HighGain = 1.9
  58. effect4.LowGain = 1
  59. effect4.MidGain = 0.1
  60. end
  61. submit.MouseButton1Down:connect(sound)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement