Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/Revenant", true))()
- Library.DefaultColor = Color3.fromRGB(255,0,0)
- Library:Notification({
- Text = "Music Player Script By Augus X",
- Duration = 6
- })
- wait (1)
- local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/Revenant", true))()
- Library.DefaultColor = Color3.fromRGB(255,0,0)
- Library:Notification({
- Text = "I Hope You Will Enjoy ",
- Duration = 5
- })
- ----------------------------
- wait (1)
- local s = Instance.new("Sound")
- s.Name = "Sound"
- s.SoundId = "http://www.roblox.com/asset/?id=7112183471"
- s.Volume = 4
- s.Looped = false
- s.archivable = false
- s.Parent = game.Workspace
- wait()
- s:play()
- -- Song Player GUI
- local gui = Instance.new("ScreenGui")
- gui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui")
- -- Background Frame
- local background = Instance.new("Frame")
- background.Size = UDim2.new(0, 160, 0, 120)
- background.BackgroundColor3 = Color3.new(0, 0, 0)
- background.BorderColor3 = Color3.new(5, 0, 0)
- background.BackgroundTransparency = 0.2
- background.Position = UDim2.new(0.5, -100, 0.5, -50)
- background.Active = true
- background.Draggable = true
- background.Parent = gui
- -- image
- local r = Instance.new("ImageLabel")
- r.Size = UDim2.new(0.5, 0, 0.4, 0)
- r.BackgroundColor3 = Color3.new(0, 0, 0)
- r.BorderColor3 = Color3.new(5, 0, 0)
- r.Position = UDim2.new(0.25, 0, 0, 0)
- r.Image = "rbxthumb://type=Asset&id=15892940241&w=150&h=150"
- r.Parent = background
- -- Song ID Input Box
- local idBox = Instance.new("TextBox")
- idBox.Size = UDim2.new(0.8, 0, 0.2, 0)
- idBox.BackgroundColor3 = Color3.new(1, 1, 1)
- idBox.Position = UDim2.new(0.10, 0, 0.45, 0)
- idBox.Text = "15689459174"
- idBox.Parent = background
- -- Play Button
- local playButton = Instance.new("TextButton")
- playButton.Size = UDim2.new(0.4, 0, 0.2, 0)
- playButton.BackgroundColor3 = Color3.new(1, 1, 1)
- playButton.Position = UDim2.new(0.1, 0, 0.7, 0)
- playButton.Text = "Play"
- playButton.Parent = background
- -- Stop Button
- local stopButton = Instance.new("TextButton")
- stopButton.Size = UDim2.new(0.4, 0, 0.2, 0)
- stopButton.BackgroundColor3 = Color3.new(1, 1, 1)
- stopButton.Position = UDim2.new(0.5, 0, 0.7, 0)
- stopButton.Text = "Stop"
- stopButton.Parent = background
- -- Audio Instance
- local audio = Instance.new("Sound")
- audio.Parent = game.Workspace
- -- Play Button Functionality
- playButton.MouseButton1Click:Connect(function()
- local id = tonumber(idBox.Text)
- if id then
- audio.SoundId = "rbxassetid://"..id
- audio:Play()
- end
- end)
- -- Stop Button Functionality
- stopButton.MouseButton1Click:Connect(function()
- audio:Stop()
- end)
- -- Cr Button Functionality
- Cr.MouseButton1Click:Connect(function()
- setclipboard("https://discord.gg/bhDDuHUW59")
- game.StarterGui:SetCore("SendNotification", {
- Title = "Copy Discord Link";
- Text = "https://discord.gg/bhDDuHUW59";
- Icon = "";
- Duration = "2";
- })
- end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement