ProlExploiter

Visualizer

Nov 12th, 2017
160
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 3.59 KB | None | 0 0
  1. --written by kent911t =D
  2.  
  3. local ScreenGui = Instance.new("ScreenGui")
  4. local TextBox = Instance.new("TextBox")
  5. local TextButton = Instance.new("TextButton")
  6.  
  7. ScreenGui.Parent = game.Players.LocalPlayer.PlayerGui
  8.  
  9. TextBox.Parent = ScreenGui
  10. TextBox.BackgroundColor3 = Color3.new(0.529412, 0.529412, 0.529412)
  11. TextBox.Position = UDim2.new(0, 0, 0, 300)
  12. TextBox.Size = UDim2.new(0, 200, 0, 50)
  13. TextBox.Font = Enum.Font.SciFi
  14. TextBox.FontSize = Enum.FontSize.Size14
  15.  
  16. TextButton.Parent = TextBox
  17. TextButton.BackgroundColor3 = Color3.new(1, 0, 0.0156863)
  18. TextButton.Position = UDim2.new(0, 200, 0, 0)
  19. TextButton.Size = UDim2.new(0, 50, 0, 50)
  20. TextButton.Font = Enum.Font.SciFi
  21. TextButton.FontSize = Enum.FontSize.Size14
  22. TextButton.Text = "OK"
  23.  
  24. -------------------------
  25.  
  26. a=Instance.new("Part", game.Players.LocalPlayer.Character)
  27. a.Name = "Visualizer"
  28. a.Anchored = false
  29. a.CanCollide = false
  30. a.Size = Vector3.new(0,0,0)
  31. a.BrickColor = BrickColor.new("Really red")
  32. a.Material = "Neon"
  33. b = Instance.new("CylinderMesh")
  34. b.Parent = a
  35.  
  36. we = Instance.new("Weld")
  37. we.Part0 = a
  38. we.Part1 = game.Players.LocalPlayer.Character.Torso
  39. we.C0 = CFrame.new(0, 2.9, 0)*CFrame.fromEulerAnglesXYZ(0, -90, 0)
  40. we.Parent = a
  41.  
  42. c=Instance.new("Part", game.Players.LocalPlayer.Character)
  43. c.Name = "Visualizer2"
  44. c.Anchored = false
  45. c.CanCollide = false
  46. c.Size = Vector3.new(0,0,0)
  47. c.BrickColor = BrickColor.new("White")
  48. c.Material = "Neon"
  49. d = Instance.new("CylinderMesh")
  50. d.Parent = c
  51.  
  52. we2 = Instance.new("Weld")
  53. we2.Part0 = c
  54. we2.Part1 = game.Players.LocalPlayer.Character.Torso
  55. we2.C0 = CFrame.new(0, 2.9, 0)*CFrame.fromEulerAnglesXYZ(0, -90, 0)
  56. we2.Parent = c
  57.  
  58. e=Instance.new("Part", game.Players.LocalPlayer.Character)
  59. e.Name = "Bass"
  60. e.Anchored = false
  61. e.CanCollide = false
  62. e.Size = Vector3.new(0,0,0)
  63. e.BrickColor = BrickColor.new("Royal purple")
  64. e.Material = "Neon"
  65. e.Transparency = 1
  66. f = Instance.new("CylinderMesh")
  67. f.Parent = e
  68.  
  69. we3 = Instance.new("Weld")
  70. we3.Part0 = e
  71. we3.Part1 = game.Players.LocalPlayer.Character.Torso
  72. we3.C0 = CFrame.new(0, 2.9, 0)*CFrame.fromEulerAnglesXYZ(0, -90, 0)
  73. we3.Parent = e
  74.  
  75. function onClicked()
  76. local id = TextBox.Text
  77. if a:FindFirstChild("Sound") then
  78. a.Sound:Destroy()
  79. end
  80. local sou = Instance.new("Sound", a)
  81. sou.Looped = true
  82. sou.Pitch = 1
  83. sou.Volume = 1
  84. sou.SoundId = ("http://www.roblox.com/asset/?id="..id)
  85. wait()
  86. sou:Play()
  87. end
  88. TextButton.MouseButton1Down:connect(onClicked)
  89.  
  90. coroutine.resume(coroutine.create(function()
  91. game:GetService("RunService").RenderStepped:connect(function()
  92. if a:FindFirstChild("Sound") ~= nil then
  93. local soundvolume = a.Sound.PlaybackLoudness
  94. b.Scale = Vector3.new(soundvolume / 10, 1, soundvolume / 10)
  95. d.Scale = Vector3.new(soundvolume / 30, 1.1, soundvolume / 30)
  96. f.Scale = Vector3.new(soundvolume / 8, 0.9, soundvolume / 8)
  97. if e.Transparency < 1 then
  98. e.Transparency = e.Transparency + 0.01
  99. end
  100. if soundvolume < 150 then
  101. a.BrickColor = BrickColor.new("Black")
  102. c.BrickColor = BrickColor.new("White")
  103. elseif soundvolume >= 500 and soundvolume <= 750 then
  104. a.BrickColor = BrickColor.new("White")
  105. c.BrickColor = BrickColor.new("Black")
  106. e.Transparency = 0
  107. elseif soundvolume > 750 then
  108. a.BrickColor = BrickColor.random()
  109. c.BrickColor = BrickColor.new("White")
  110. elseif soundvolume <= 500 and soundvolume >= 150 then
  111. a.BrickColor = BrickColor.new("Really red")
  112. c.BrickColor = BrickColor.new("White")
  113. end
  114. else
  115. b.Scale = Vector3.new(0.01, 0.01, 0.01)
  116. d.Scale = Vector3.new(0.01, 0.01, 0.01)
  117. f.Scale = Vector3.new(0.01, 0.01, 0.01)
  118. end
  119. end)
  120. end))
Add Comment
Please, Sign In to add comment