-- Rpidkidd ServerSide Decal Spammer (Executor Ready) -- Toggle: K | Custom Decal ID | Pure Chaos Mode -- Injected via executor only local Players = game:GetService("Players") local UserInputService = game:GetService("UserInputService") local RunService = game:GetService("RunService") local player = Players.LocalPlayer local mouse = player:GetMouse() -- GUI (CoreGui so it never dies) local gui = Instance.new("ScreenGui") gui.Name = "RpidkiddServerSide" gui.ResetOnSpawn = false gui.Parent = game:GetService("CoreGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 360, 0, 200) frame.Position = UDim2.new(0, 10, 0, 10) frame.BackgroundColor3 = Color3.fromRGB(15, 15, 25) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = gui Instance.new("UICorner", frame).CornerRadius = UDim.new(0, 16) local stroke = Instance.new("UIStroke", frame) stroke.Color = Color3.fromRGB(255, 0, 255) stroke.Thickness = 2 -- Title - Rpidkidd ServerSide local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 50) title.BackgroundTransparency = 1 title.Text = "Rpidkidd ServerSide" title.TextColor3 = Color3.fromRGB(255, 0, 255) title.Font = Enum.Font.Arcade title.TextSize = 28 title.TextStrokeTransparency = 0.7 title.Parent = frame -- Subtitle local sub = Instance.new("TextLabel") sub.Size = UDim2.new(1, 0, 0, 25) sub.Position = UDim2.new(0, 0, 0, 45) sub.BackgroundTransparency = 1 sub.Text = "Decal Spammer | Toggle: K" sub.TextColor3 = Color3.fromRGB(200, 200, 255) sub.Font = Enum.Font.Code sub.TextSize = 16 sub.Parent = frame -- Decal ID Box local textbox = Instance.new("TextBox") textbox.Size = UDim2.new(1, -30, 0, 40) textbox.Position = UDim2.new(0, 15, 0, 80) textbox.BackgroundColor3 = Color3.fromRGB(30, 30, 45) textbox.PlaceholderText = "Enter Decal ID..." textbox.Text = "773372358" -- default doge textbox.TextColor3 = Color3.fromRGB(255, 255, 255) textbox.Font = Enum.Font.Code textbox.TextSize = 18 textbox.Parent = frame Instance.new("UICorner", textbox).CornerRadius = UDim.new(0, 10) -- Status local status = Instance.new("TextLabel") status.Size = UDim2.new(1, -30, 0, 45) status.Position = UDim2.new(0, 15, 0, 135) status.BackgroundColor3 = Color3.fromRGB(150, 0, 0) status.Text = "OFFLINE | Press K" status.TextColor3 = Color3.new(1, 1, 1) status.Font = Enum.Font.GothamBold status.TextSize = 20 status.Parent = frame Instance.new("UICorner", status).CornerRadius = UDim.new(0, 10) -- Variables local spamming = false local connection local faces = {"Front", "Back", "Left", "Right", "Top", "Bottom"} local function apply(part) if not part or not part:IsA("BasePart") then return end local decal = Instance.new("Decal") local id = textbox.Text:gsub("%s+", "") if id ~= "" and not id:find("rbxassetid://") then id = "rbxassetid://" .. id end decal.Texture = id decal.Face = Enum.NormalId[faces[math.random(#faces)]] decal.Transparency = math.random(0, 4) * 0.1 decal.Parent = part end local function spam() local target = mouse.Target if target then apply(target) -- Spam entire model too if target.Parent and target.Parent:IsA("Model") then for _, v in pairs(target.Parent:GetDescendants()) do if v:IsA("BasePart") and math.random(1, 3) == 1 then apply(v) end end end end end -- Toggle UserInputService.InputBegan:Connect(function(i, gp) if gp or i.KeyCode ~= Enum.KeyCode.K then return end spamming = not spamming if spamming then status.Text = "ONLINE - SPAMMING" status.BackgroundColor3 = Color3.fromRGB(0, 255, 0) connection = RunService.Heartbeat:Connect(spam) else status.Text = "OFFLINE | Press K" status.BackgroundColor3 = Color3.fromRGB(150, 0, 0) if connection then connection:Disconnect() end end end) -- Notification game.StarterGui:SetCore("SendNotification", { Title = "Rpidkidd ServerSide"; Text = "Loaded successfully! Press K to unleash"; Icon = "rbxassetid://773372358"; Duration = 8; }) print("Rpidkidd ServerSide Decal Spammer injected - Press K to start")