-- Axer X Ayush | Delta Fix 2026 local player = game:GetService("Players").LocalPlayer local pGui = player:WaitForChild("PlayerGui") -- 1. FORCE CLEAN (Removes any broken versions) for _, v in pairs(pGui:GetChildren()) do if v.Name == "Ayush_Main" then v:Destroy() end end -- 2. CREATE GUI (Direct Parent) local sg = Instance.new("ScreenGui") sg.Name = "Ayush_Main" sg.Parent = pGui sg.ResetOnSpawn = false sg.ZIndexBehavior = Enum.ZIndexBehavior.Sibling -- 3. THE RGB "A" ICON local Icon = Instance.new("TextButton") Icon.Parent = sg Icon.Size = UDim2.new(0, 60, 0, 60) Icon.Position = UDim2.new(0, 10, 0.5, -30) Icon.BackgroundColor3 = Color3.fromRGB(15, 15, 15) Icon.Text = "A" Icon.TextColor3 = Color3.fromRGB(255, 255, 255) Icon.TextSize = 35 Icon.Font = Enum.Font.GothamBlack Icon.ZIndex = 10 Instance.new("UICorner", Icon).CornerRadius = UDim.new(1, 0) local iStroke = Instance.new("UIStroke", Icon) iStroke.Thickness = 3 -- 4. THE MUSIC FRAME local Frame = Instance.new("Frame") Frame.Parent = sg Frame.Size = UDim2.new(0, 220, 0, 160) Frame.Position = UDim2.new(0.5, -110, 0.4, 0) Frame.BackgroundColor3 = Color3.fromRGB(10, 10, 10) Frame.Visible = false Instance.new("UICorner", Frame) local fStroke = Instance.new("UIStroke", Frame) fStroke.Thickness = 2 -- 5. RGB ENGINE task.spawn(function() while task.wait() do local color = Color3.fromHSV(tick() % 5 / 5, 0.8, 1) Icon.TextColor3 = color iStroke.Color = color fStroke.Color = color end end) -- 6. START/STOP CONTROLS local Box = Instance.new("TextBox", Frame) Box.Size = UDim2.new(0.85, 0, 0, 35) Box.Position = UDim2.new(0.075, 0, 0.15, 0) Box.PlaceholderText = "Paste ID..." Box.BackgroundColor3 = Color3.fromRGB(30, 30, 30) Box.TextColor3 = Color3.fromRGB(255, 255, 255) Instance.new("UICorner", Box) local Start = Instance.new("TextButton", Frame) Start.Size = UDim2.new(0.4, 0, 0, 40) Start.Position = UDim2.new(0.075, 0, 0.55, 0) Start.Text = "START" Start.BackgroundColor3 = Color3.fromRGB(0, 180, 0) Start.TextColor3 = Color3.fromRGB(255, 255, 255) Instance.new("UICorner", Start) local Stop = Instance.new("TextButton", Frame) Stop.Size = UDim2.new(0.4, 0, 0, 40) Stop.Position = UDim2.new(0.525, 0, 0.55, 0) Stop.Text = "STOP" Stop.BackgroundColor3 = Color3.fromRGB(180, 0, 0) Stop.TextColor3 = Color3.fromRGB(255, 255, 255) Instance.new("UICorner", Stop) -- 7. FUNCTIONALITY local function play(id) local re = game:GetService("ReplicatedStorage"):FindFirstChild("RE") if re then pcall(function() re:FireServer("MusicID", "rbxassetid://" .. id) end) end local old = game:GetService("SoundService"):FindFirstChild("AyushSnd") if old then old:Destroy() end local s = Instance.new("Sound", game:GetService("SoundService")) s.Name = "AyushSnd" s.SoundId = "rbxassetid://" .. id s.Volume = 8 s:Play() end Start.MouseButton1Click:Connect(function() if Box.Text ~= "" then play(Box.Text) end end) Stop.MouseButton1Click:Connect(function() play("0") local s = game:GetService("SoundService"):FindFirstChild("AyushSnd") if s then s:Destroy() end end) Icon.MouseButton1Click:Connect(function() Frame.Visible = not Frame.Visible end)