-- FULL AUTO GUI FOR EXECUTORS - CorruptNatureEvent Spammer -- Just paste into your executor and run! local ReplicatedStorage = game:GetService("ReplicatedStorage") local RunService = game:GetService("RunService") local Players = game:GetService("Players") local player = Players.LocalPlayer -- Wait for the event local remoteEvent = ReplicatedStorage:WaitForChild("CorruptNatureEvent", 10) if not remoteEvent then warn("CorruptNatureEvent not found! Check the name.") return end -- Create GUI from scratch local screenGui = Instance.new("ScreenGui") screenGui.Name = "CorruptNatureSpammer" screenGui.ResetOnSpawn = false screenGui.Parent = game:GetService("CoreGui") -- Works in executors local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 260, 0, 110) frame.Position = UDim2.new(0, 100, 0, 100) frame.BackgroundColor3 = Color3.fromRGB(35, 35, 45) frame.BorderColor3 = Color3.fromRGB(0, 255, 100) frame.BorderSizePixel = 2 frame.Active = true frame.Draggable = true -- Instant drag for executors! frame.Parent = screenGui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 12) corner.Parent = frame local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 35) title.BackgroundTransparency = 1 title.Text = "inf currupt natures" title.TextColor3 = Color3.fromRGB(0, 255, 100) title.Font = Enum.Font.GothamBlack title.TextSize = 20 title.Parent = frame local status = Instance.new("TextLabel") status.Size = UDim2.new(1, 0, 0, 30) status.Position = UDim2.new(0, 0, 0, 35) status.BackgroundTransparency = 1 status.Text = "Status: OFF" status.TextColor3 = Color3.fromRGB(255, 80, 80) status.Font = Enum.Font.GothamBold status.TextSize = 18 status.Parent = frame local button = Instance.new("TextButton") button.Size = UDim2.new(0, 200, 0, 50) button.Position = UDim2.new(0.5, -100, 0.5, 10) button.BackgroundColor3 = Color3.fromRGB(180, 30, 30) button.Text = "TURN ON" button.TextColor3 = Color3.new(1, 1, 1) button.Font = Enum.Font.GothamBlack button.TextSize = 24 button.Parent = frame local btnCorner = Instance.new("UICorner") btnCorner.CornerRadius = UDim.new(0, 10) btnCorner.Parent = button -- Variables local running = false local connection -- Toggle function button.MouseButton1Click:Connect(function() running = not running if running then button.Text = "TURN OFF" button.BackgroundColor3 = Color3.fromRGB(30, 180, 30) status.Text = "Status: ON (Spamming...)" status.TextColor3 = Color3.fromRGB(0, 255, 100) connection = RunService.Heartbeat:Connect(function() pcall(function() remoteEvent:FireServer() end) end) -- Notification (optional, looks cool) game.StarterGui:SetCore("SendNotification", { Title = "Spammer Active"; Text = "CorruptNatureEvent is being fired!"; Duration = 3; }) else button.Text = "TURN ON" button.BackgroundColor3 = Color3.fromRGB(180, 30, 30) status.Text = "Status: OFF" status.TextColor3 = Color3.fromRGB(255, 80, 80) if connection then connection:Disconnect() end end end) -- Success message print("CorruptNature Spammer GUI Loaded!") print("Drag the window anywhere - Click button to toggle") game.StarterGui:SetCore("SendNotification", { Title = "Loaded!"; Text = "CorruptNature Spammer Ready - Drag & Click!"; Duration = 5; })