local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local LocalPlayer = Players.LocalPlayer local PlayerGui = LocalPlayer:WaitForChild("PlayerGui") local gui = Instance.new("ScreenGui", PlayerGui) gui.Name = "RemoteAbuserGui" local frame = Instance.new("Frame", gui) frame.Size = UDim2.new(0, 400, 0, 260) frame.Position = UDim2.new(0.5, -200, 0.5, -130) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) frame.Active = true frame.Draggable = true Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 12) local closeBtn = Instance.new("TextButton", frame) closeBtn.Size = UDim2.new(0, 30, 0, 30) closeBtn.Position = UDim2.new(1, -35, 0, 5) closeBtn.BackgroundColor3 = Color3.fromRGB(60, 0, 0) closeBtn.TextColor3 = Color3.new(1, 1, 1) closeBtn.Font = Enum.Font.SourceSansBold closeBtn.TextSize = 20 closeBtn.Text = "❌" Instance.new("UICorner", closeBtn).CornerRadius = UDim.new(0, 6) closeBtn.MouseButton1Click:Connect(function() gui:Destroy() end) local langBtn = Instance.new("TextButton", frame) langBtn.Size = UDim2.new(0, 70, 0, 30) langBtn.Position = UDim2.new(1, -110, 0, 5) langBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) langBtn.TextColor3 = Color3.fromRGB(255, 255, 255) langBtn.Font = Enum.Font.SourceSansBold langBtn.TextSize = 14 Instance.new("UICorner", langBtn).CornerRadius = UDim.new(0, 6) local discordLabel = Instance.new("TextLabel", frame) discordLabel.Size = UDim2.new(0, 200, 0, 30) discordLabel.Position = UDim2.new(0, 10, 0, 5) discordLabel.BackgroundTransparency = 1 discordLabel.Text = "discord:1w69" discordLabel.TextColor3 = Color3.fromRGB(100, 170, 255) discordLabel.Font = Enum.Font.SourceSansBold discordLabel.TextSize = 16 discordLabel.TextXAlignment = Enum.TextXAlignment.Left local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, -20, 0, 30) title.Position = UDim2.new(0, 10, 0, 40) title.BackgroundTransparency = 1 title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.SourceSansBold title.TextSize = 18 title.TextXAlignment = Enum.TextXAlignment.Center local buttonHolder = Instance.new("Frame", frame) buttonHolder.Size = UDim2.new(1, 0, 1, -90) buttonHolder.Position = UDim2.new(0, 0, 0, 80) buttonHolder.BackgroundTransparency = 1 local layout = Instance.new("UIListLayout", buttonHolder) layout.Padding = UDim.new(0, 10) layout.HorizontalAlignment = Enum.HorizontalAlignment.Center layout.SortOrder = Enum.SortOrder.LayoutOrder local foundRemotes = {} local spamming = false local isArabic = true local fakeValues = { "test", 123, true, false, Vector3.new(1,2,3), CFrame.new(), Color3.fromRGB(255,0,255), Enum.Material.Neon, Instance.new("Part") } local function randomFake() return fakeValues[math.random(1, #fakeValues)] end local scanBtn = Instance.new("TextButton") local checkmark = Instance.new("TextLabel", scanBtn) local startBtn = Instance.new("TextButton") local stopBtn = Instance.new("TextButton") for _, btn in ipairs({scanBtn, startBtn, stopBtn}) do btn.Size = UDim2.new(0.8, 0, 0, 35) btn.BackgroundColor3 = Color3.fromRGB(60, 60, 60) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.SourceSansBold btn.TextSize = 18 Instance.new("UICorner", btn).CornerRadius = UDim.new(0, 8) btn.Parent = buttonHolder end checkmark.Size = UDim2.new(0, 30, 1, 0) checkmark.Position = UDim2.new(1, 5, 0, 0) checkmark.BackgroundTransparency = 1 checkmark.TextColor3 = Color3.new(0, 1, 0) checkmark.Font = Enum.Font.SourceSansBold checkmark.TextSize = 24 checkmark.Text = "" checkmark.Parent = scanBtn scanBtn.MouseButton1Click:Connect(function() foundRemotes = {} for _, obj in ipairs(ReplicatedStorage:GetDescendants()) do if obj:IsA("RemoteEvent") or obj:IsA("RemoteFunction") then table.insert(foundRemotes, obj) end end checkmark.Text = "👍" task.delay(3, function() checkmark.Text = "" end) end) startBtn.MouseButton1Click:Connect(function() if #foundRemotes == 0 then return end spamming = true task.spawn(function() while spamming do for _, remote in ipairs(foundRemotes) do local args = {} for i = 1, math.random(1, 4) do table.insert(args, randomFake()) end pcall(function() if remote:IsA("RemoteEvent") then remote:FireServer(unpack(args)) elseif remote:IsA("RemoteFunction") then remote:InvokeServer(unpack(args)) end end) task.wait(0.02) end end end) end) stopBtn.MouseButton1Click:Connect(function() spamming = false end) local function updateLanguage() if isArabic then title.Text = "سكربت بحث و استخدام الريموتات" langBtn.Text = "English" scanBtn.Text = "🔍 بحث عن الريموتات" startBtn.Text = "🚀 بدء الغارة (0.02)" stopBtn.Text = "🛑 إيقاف الغارة" else title.Text = "Remote Scanner & Spammer" langBtn.Text = "عربي" scanBtn.Text = "🔍 Scan for Remotes" startBtn.Text = "🚀 Start Raid (0.02)" stopBtn.Text = "🛑 Stop Raid" end end langBtn.MouseButton1Click:Connect(function() isArabic = not isArabic updateLanguage() end) updateLanguage()