-- Admin GUI with Audio Player local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local FireButton = Instance.new("TextButton") local GrenadiersButton = Instance.new("TextButton") local StopButton = Instance.new("TextButton") -- Configure GUI ScreenGui.Parent = game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.ResetOnSpawn = false MainFrame.Name = "AdminPanel" MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(45, 45, 45) MainFrame.Position = UDim2.new(0.5, -100, 0.5, -100) MainFrame.Size = UDim2.new(0, 200, 0, 250) MainFrame.Active = true MainFrame.Draggable = true Title.Parent = MainFrame Title.Text = "ADMIN AUDIO PLAYER" Title.Size = UDim2.new(1, 0, 0, 50) Title.TextColor3 = Color3.new(1, 1, 1) Title.BackgroundTransparency = 1 -- Audio Setup local Sound = Instance.new("Sound") Sound.Parent = game.Workspace Sound.Volume = 0.5 local function playAudio(id) Sound:Stop() Sound.SoundId = "rbxassetid://" .. tostring(id) Sound:Play() end -- Buttons Configuration FireButton.Parent = MainFrame FireButton.Text = "Fire - Arthur Brown" FireButton.Position = UDim2.new(0.1, 0, 0.25, 0) FireButton.Size = UDim2.new(0.8, 0, 0, 40) FireButton.MouseButton1Click:Connect(function() -- Common ID for "Fire" by Arthur Brown playAudio(142376088) end) GrenadiersButton.Parent = MainFrame GrenadiersButton.Text = "British Grenadiers" GrenadiersButton.Position = UDim2.new(0.1, 0, 0.45, 0) GrenadiersButton.Size = UDim2.new(0.8, 0, 0, 40) GrenadiersButton.MouseButton1Click:Connect(function() -- Valid ID for British Grenadiers March playAudio(1842367914) end) StopButton.Parent = MainFrame StopButton.Text = "STOP AUDIO" StopButton.BackgroundColor3 = Color3.fromRGB(150, 0, 0) StopButton.Position = UDim2.new(0.1, 0, 0.7, 0) StopButton.Size = UDim2.new(0.8, 0, 0, 40) StopButton.MouseButton1Click:Connect(function() Sound:Stop() end)