Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --XxBillyTheNoscoperxX
- --distortion lololololololol
- local plr = game.Players.LocalPlayer
- plrgui = plr.PlayerGui
- local base = Instance.new("ScreenGui",plrgui)
- local bground = Instance.new("Frame",base)
- base.Name = "lol"
- bground.Name = "bground"
- bground.Position = UDim2.new(0.505, 0, 0.812, 0)
- bground.Size = UDim2.new(0.495, 0, 0.187, 0)
- bground.BackgroundColor3 = Color3.fromRGB(0,0,0)
- bground.BorderColor3 = Color3.fromRGB(163,162,165)
- bground.BorderSizePixel = 6
- local tbox = Instance.new("TextBox",bground)
- tbox.Name = "tbox"
- tbox.Text = "Sound ID"
- tbox.Position = UDim2.new(0.013, 0, 0.043, 0)
- tbox.Size = UDim2.new(0, 200, 0, 50)
- tbox.TextWrapped = true
- tbox.TextScaled = true
- tbox.BackgroundColor3 = Color3.fromRGB(255,255,255)
- tbox.BorderColor3 = Color3.fromRGB(25,25,25)
- tbox.BorderSizePixel = 5
- local volume = Instance.new("TextBox",bground)
- volume.Name = "volume"
- volume.Text = "vol 1-10"
- volume.Position = UDim2.new(0.006, 0, 0.493, 0)
- volume.Size = UDim2.new(0, 200, 0, 50)
- volume.TextWrapped = true
- volume.TextScaled = true
- volume.BackgroundColor3 = Color3.fromRGB(255,255,255)
- volume.BorderColor3 = Color3.fromRGB(25,25,25)
- volume.BorderSizePixel = 5
- local submit = Instance.new("TextButton",bground)
- submit.Name = "submit"
- submit.Text = "Submit"
- submit.Position = UDim2.new(0.68, 0, 0.600, 0)
- submit.Size = UDim2.new(0, 200, 0, 50)
- submit.TextScaled = true
- submit.TextWrapped = true
- submit.BackgroundColor3 = Color3.fromRGB(200,200,200)
- --local pause = Instance.new("TextButton",bground)
- --pause.Name = "pause"
- --pause.Text = "Pause"
- --pause.Position = UDim2.new(0.670, 0, 0.403, 0)
- --pause.Size = UDim2.new(0, 200, 0, 50)
- --pause.TextScaled = true
- --pause.TextWrapped = true
- --pause.BackgroundColor3 = Color3.fromRGB(200,200,200)
- local stop = Instance.new("TextButton",bground)
- stop.Name = "stop"
- stop.Text = "Stop"
- stop.Position = UDim2.new(0.672, 0, 0.099, 0)
- stop.Size = UDim2.new(0, 200, 0, 50)
- stop.TextScaled = true
- stop.TextWrapped = true
- stop.BackgroundColor3 = Color3.fromRGB(200,200,200)
- --time for the goodies amirite
- --while wait(1/60)do
- -- if workspace:FindFirstChild("Musicui") == nil then
- -- newsound = Instance.new("Sound",workspace)
- -- newsound.Name = "MusicGui"
- -- newsound.SoundId = "rbxassetid://"..tbox.Text
- -- else
- -- end
- --end
- local pause = false
- local newsound = Instance.new("Sound",workspace)
- newsound.Name = "MusicGui"
- submit.MouseButton1Down:connect(function()
- newsound.SoundId = "rbxassetid://"..tbox.Text
- newsound.Volume = volume.Text
- newsound.Looped = true
- newsound:Play()
- pause = false
- end)
- stop.MouseButton1Down:Connect(function()
- if pause == false then
- newsound:Pause()
- end
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement