-- คัดลอกโค้ดทั้งหมดนี้ไปวางใน Executor ของคุณแล้วกด Execute local Players = game:GetService("Players") local RunService = game:GetService("RunService") local Player = Players.LocalPlayer -- 1. สร้างหน้าต่างควบคุม GUI ไซเบอร์พังก์ระดับพรีเมียม (ResetOnSpawn = false) local ScreenGui = Instance.new("ScreenGui") ScreenGui.Name = "FE_NormalBoomboxOverload" ScreenGui.ResetOnSpawn = false ScreenGui.Parent = Player:WaitForChild("PlayerGui") local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0, 300, 0, 180) Frame.Position = UDim2.new(0.5, -150, 0.4, -90) Frame.BackgroundColor3 = Color3.fromRGB(15, 15, 22) Frame.BorderSizePixel = 0 Frame.Active = true Frame.Draggable = true Frame.Parent = ScreenGui local FrameCorner = Instance.new("UICorner") FrameCorner.CornerRadius = UDim.new(0, 12) FrameCorner.Parent = Frame local FrameStroke = Instance.new("UIStroke") FrameStroke.Color = Color3.fromRGB(0, 255, 200) -- ขอบเรืองแสงสีมินต์ FrameStroke.Thickness = 2 FrameStroke.Parent = Frame local Title = Instance.new("TextLabel") Title.Size = UDim2.new(1, 0, 0.22, 0) Title.BackgroundTransparency = 1 Title.Text = "⚡ FE MULTI-BOOMBOX LOUD HUB ⚡" Title.TextColor3 = Color3.fromRGB(0, 255, 200) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 14 Title.Parent = Frame local TextBox = Instance.new("TextBox") TextBox.Size = UDim2.new(0, 260, 0, 38) TextBox.Position = UDim2.new(0, 20, 0, 50) TextBox.BackgroundColor3 = Color3.fromRGB(30, 30, 45) TextBox.Text = "กรอก ID เพลงตรงนี้" TextBox.TextColor3 = Color3.fromRGB(255, 255, 255) TextBox.Font = Enum.Font.SourceSansItalic TextBox.TextSize = 14 TextBox.ClearTextOnFocus = true TextBox.Parent = Frame local TextBoxCorner = Instance.new("UICorner") TextBoxCorner.CornerRadius = UDim.new(0, 6) TextBoxCorner.Parent = TextBox local PlayButton = Instance.new("TextButton") PlayButton.Size = UDim2.new(0, 260, 0, 48) PlayButton.Position = UDim2.new(0, 20, 0, 105) PlayButton.BackgroundColor3 = Color3.fromRGB(255, 0, 128) -- สีชมพูนีออนคลาสสิกของคุณ PlayButton.Text = "💥 BLAST AUDIO IN HAND 💥" PlayButton.TextColor3 = Color3.fromRGB(255, 255, 255) PlayButton.Font = Enum.Font.SourceSansBold PlayButton.TextSize = 14 PlayButton.Parent = Frame local PlayButtonCorner = Instance.new("UICorner") PlayButtonCorner.CornerRadius = UDim.new(0, 8) PlayButtonCorner.Parent = PlayButton -- 🌟 2. ระบบรวบรวมช่องสัญญาณและสลายแรงถอนไอเทม (Perfect Hand-Sync Blast) local function executeNormalHandBoomboxBlast() local character = Player.Character local backpack = Player:FindFirstChild("Backpack") local songId = TextBox.Text if not character or not backpack or songId == "" or songId == "กรอก ID เพลงตรงนี้" then return end local targetBoomboxes = {} -- กวาดรายชื่อคลังวิทยุทั้งหมดที่มีในไอดี for _, tool in pairs(backpack:GetChildren()) do if tool:IsA("Tool") and (string.find(string.lower(tool.Name), "boombox") or string.find(string.lower(tool.Name), "radio") or string.find(string.lower(tool.Name), "audio")) then table.insert(targetBoomboxes, tool) end end for _, tool in pairs(character:GetChildren()) do if tool:IsA("Tool") and (string.find(string.lower(tool.Name), "boombox") or string.find(string.lower(tool.Name), "radio") or string.find(string.lower(tool.Name), "audio")) then table.insert(targetBoomboxes, tool) end end if #targetBoomboxes == 0 then return end -- 🌟 [หัวใจหลัก] บังคับสวมใส่ถือ Boombox เครื่องแรกสุดให้ขึ้นมาอยู่ในมือขวาจริงๆ 1 เครื่อง (Master Object) local masterTool = targetBoomboxes[1] if masterTool and masterTool.Parent ~= character then masterTool.Parent = character end -- หน่วงเวลาระดับมิลลิวินาทีให้โครงสร้างฟิสิกส์เน็ตเวิร์กของปืนเสียงพร้อมใช้งาน task.wait(0.1) -- 🌟 จำลองการระดมสแปมคำสั่งเสียงอัตโนมัติ 5 รอบซ้อน (Auto-Spam Burst) -- เพื่อเจาะระบบป้องกันเซิร์ฟเวอร์ และบีบให้วิทยุทุกเครื่องเปิดเสียงเพลงทับซ้อนพร้อมกัน 100% task.spawn(function() for burst = 1, 5 do for _, tool in pairs(targetBoomboxes) do pcall(function() -- ถ้าเป็นเครื่องที่อยู่ในมือ สั่งเปิดระบบปุ่มกด if tool.Parent == character then tool:Activate() end -- เจาะรหัสยิงเลข ID เพลงใส่ทุกช่องสัญญาณคู่ขนาน (Perfect Sync) for _, remote in pairs(tool:GetDescendants()) do if remote:IsA("RemoteEvent") then remote:FireServer(songId) remote:FireServer("PlaySong", songId) remote:FireServer(tonumber(songId)) elseif remote:IsA("RemoteFunction") then task.spawn(function() remote:InvokeServer(songId) remote:InvokeServer("PlaySong", songId) end) end end end) end RunService.RenderStepped:Wait() -- เว้นจังหวะเฟรมอย่างเสถียรป้องกันระบบดีดของตกพื้น end print("[AUDIO_SYSTEM] ระเบิดพลังเสียงแบบถือมือปกติเสร็จสิ้น!") end) end -- ผูกการทำงานเข้ากับปุ่มหน้าต่างดีเจ PlayButton.MouseButton1Click:Connect(executeNormalHandBoomboxBlast)