Advertisement
Guest User

thingeroni

a guest
Sep 30th, 2016
67
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.72 KB | None | 0 0
  1. --[ Made by mr steal yo doge#3189 on discord and released by TALLNOOBEY#8054 with permission
  2. ]]
  3.  
  4. function Color4(r, g, b)
  5. return Color3.new((((r + 1) / 256) - (1 / 256)), (((g + 1) / 256) - (1 / 256)),(((b + 1) / 256) - (1 / 256)))
  6. end
  7. local p = game.Players.LocalPlayer
  8. local pgui = game.Players.LocalPlayer.PlayerGui
  9. local screengui = Instance.new("ScreenGui", pgui)
  10. local frame = Instance.new("Frame", screengui)
  11. local value = Instance.new("TextBox", frame)
  12. local pitch = Instance.new("TextBox", frame)
  13. local volume = Instance.new("TextBox", frame)
  14. local yo = Instance.new("TextLabel", frame)
  15. --------------------------------------------------
  16. frame.Position = UDim2.new(0.5, -960, 0.5, -380)
  17. frame.Size = UDim2.new(0, 1950, 0, 80)
  18. frame.Name = "skids"
  19. frame.BackgroundTransparency = 0.5
  20. frame.BackgroundColor3 = Color4(0,0,0)
  21. --------------------------------------------------
  22. value.Size = UDim2.new(0, 350, 0, 60)
  23. value.Position = UDim2.new(0.5, -150, 0.5, -30)
  24. value.Text = "Music"
  25. value.FontSize = "Size36"
  26. value.BackgroundColor3 = Color4(255,255,127)
  27. value.BackgroundTransparency = 0.5
  28. value.Font = "SourceSansLight"
  29. value.TextScaled = true
  30. value.Changed:connect(function()
  31. print("yes babe")
  32.  
  33. if game.Workspace:FindFirstChild("Sound") then
  34. repeat game.Workspace.Sound:Destroy() until game.Workspace:FindFirstChild("Sound")
  35. end
  36. s = Instance.new("Sound", game.Workspace)
  37.  
  38. s.Name = "Sound"
  39. s.SoundId = "rbxassetid://" .. value.Text
  40. s.Volume = 1
  41. s.Pitch = 1
  42. s.Looped = false
  43.  
  44. wait(1)
  45.  
  46. s:Play()
  47. end)
  48. --------------------------------------------------
  49. pitch.Size = UDim2.new(0, 150, 0, 60)
  50. pitch.Position = UDim2.new(0.5, -350, 0.5, -30)
  51. pitch.Text = "Pitch"
  52. pitch.FontSize = "Size36"
  53. pitch.BackgroundColor3 = Color4(255,255,127)
  54. pitch.BackgroundTransparency = 0.5
  55. pitch.Font = "SourceSansLight"
  56. pitch.TextScaled = true
  57. pitch.Changed:connect(function()
  58. game.Workspace:FindFirstChild("Sound").Pitch = pitch.Text
  59. end)
  60. --------------------------------------------------
  61. volume.Size = UDim2.new(0, 150, 0, 60)
  62. volume.Position = UDim2.new(0.5, 250, 0.5, -30)
  63. volume.Text = "Volume"
  64. volume.FontSize = "Size36"
  65. volume.BackgroundColor3 = Color4(255,255,127)
  66. volume.BackgroundTransparency = 0.5
  67. volume.Font = "SourceSansLight"
  68. volume.TextScaled = true
  69. volume.Changed:connect(function()
  70. game.Workspace:FindFirstChild("Sound").Volume = volume.Text
  71. end)
  72. --------------------------------------------------------------
  73. yo.Size = UDim2.new(0, 350, 0, 60)
  74. yo.Position = UDim2.new(0.5, -150, 0.5, -120)
  75. yo.Text = "Made by mr steal yo doge <3"
  76. yo.FontSize = "Size42"
  77. yo.BackgroundColor3 = Color4(0,0,0)
  78. yo.BackgroundTransparency = 0.3
  79. yo.Font = "SourceSansLight"
  80. yo.TextScaled = true
  81. yo.TextColor3 = Color4(255,255,255)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement