-- [[ Ayush music pass - GLOBAL REPLICATION ]] -- local player = game.Players.LocalPlayer local RunService = game:GetService("RunService") -- 1. UI SETUP local ScreenGui = Instance.new("ScreenGui", game:GetService("CoreGui")) ScreenGui.Name = "AyushGlobalPass" local LogoBtn = Instance.new("TextButton", ScreenGui) LogoBtn.Size = UDim2.new(0, 50, 0, 50) LogoBtn.Position = UDim2.new(0, 10, 0.4, 0) LogoBtn.Text = "A" LogoBtn.BackgroundColor3 = Color3.fromRGB(20, 20, 20) LogoBtn.Font = Enum.Font.GothamBold LogoBtn.TextSize = 30 LogoBtn.Draggable = true LogoBtn.Active = true Instance.new("UICorner", LogoBtn).CornerRadius = UDim.new(0, 10) local Stroke = Instance.new("UIStroke", LogoBtn) Stroke.Thickness = 3 -- RGB Animation RunService.RenderStepped:Connect(function() local color = Color3.fromHSV(tick() % 5 / 5, 1, 1) Stroke.Color = color LogoBtn.TextColor3 = color end) -- 2. MAIN PANEL local Frame = Instance.new("Frame", ScreenGui) Frame.Size = UDim2.new(0, 220, 0, 150) Frame.Position = UDim2.new(0.5, -110, 0.5, -75) Frame.BackgroundColor3 = Color3.fromRGB(25, 25, 25) Frame.Visible = false Frame.Draggable = true Frame.Active = true Instance.new("UICorner", Frame) local Box = Instance.new("TextBox", Frame) Box.PlaceholderText = "Enter Phonk ID" Box.Size = UDim2.new(0.8, 0, 0, 35) Box.Position = UDim2.new(0.1, 0, 0.3, 0) Box.BackgroundColor3 = Color3.fromRGB(40, 40, 40) Box.TextColor3 = Color3.new(1, 1, 1) Instance.new("UICorner", Box) local PlayBtn = Instance.new("TextButton", Frame) PlayBtn.Text = "PLAY GLOBAL Δ" PlayBtn.Size = UDim2.new(0.8, 0, 0, 40) PlayBtn.Position = UDim2.new(0.1, 0, 0.65, 0) PlayBtn.BackgroundColor3 = Color3.fromRGB(0, 150, 0) PlayBtn.TextColor3 = Color3.new(1, 1, 1) Instance.new("UICorner", PlayBtn) -- 3. THE REPLICATION ENGINE (The Secret Sauce) local function playGlobal(id) local assetId = "rbxassetid://" .. id -- Search for any Radio Tool you are holding local tool = player.Character:FindFirstChildOfClass("Tool") if tool then for _, v in pairs(tool:GetDescendants()) do if v:IsA("Sound") then v.SoundId = assetId v:Play() v.Volume = 10 -- Maximize for others end end end -- Search for Brookhaven Vehicle Audio if player.Character:FindFirstChild("Humanoid") and player.Character.Humanoid.SeatPart then local car = player.Character.Humanoid.SeatPart.Parent for _, v in pairs(car:GetDescendants()) do if v:IsA("Sound") then v.SoundId = assetId v:Play() v.Volume = 10 end end end end -- 4. BUTTONS LogoBtn.MouseButton1Click:Connect(function() Frame.Visible = not Frame.Visible end) PlayBtn.MouseButton1Click:Connect(function() local cleanId = Box.Text:gsub("%D", "") if cleanId ~= "" then playGlobal(cleanId) end end)