local UserInputService = game:GetService("UserInputService") local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local StarterGui = game:GetService("StarterGui") local screenGui = Instance.new("ScreenGui") screenGui.Name = "ScriptSpammerGui" screenGui.Parent = LocalPlayer:WaitForChild("PlayerGui") screenGui.ResetOnSpawn = false local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 400) frame.Position = UDim2.new(0.5, -150, 0.5, -200) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Active = true frame.Draggable = true frame.Parent = screenGui local uiCorner = Instance.new("UICorner") uiCorner.CornerRadius = UDim.new(0, 10) uiCorner.Parent = frame local uiStroke = Instance.new("UIStroke") uiStroke.Thickness = 2 uiStroke.Color = Color3.fromRGB(0, 0, 0) uiStroke.Transparency = 0.8 uiStroke.Parent = frame local titleBar = Instance.new("Frame") titleBar.Size = UDim2.new(1, 0, 0, 30) titleBar.BackgroundColor3 = Color3.fromRGB(20, 20, 20) titleBar.BorderSizePixel = 0 titleBar.Parent = frame local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(1, -10, 1, 0) titleLabel.Position = UDim2.new(0, 5, 0, 0) titleLabel.BackgroundTransparency = 1 titleLabel.Text = "Script Spammer" titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255) titleLabel.TextSize = 16 titleLabel.Font = Enum.Font.SourceSansBold titleLabel.Parent = titleBar local textBox = Instance.new("TextBox") textBox.Size = UDim2.new(0.9, 0, 0.7, 0) textBox.Position = UDim2.new(0.05, 0, 0.1, 0) textBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40) textBox.TextColor3 = Color3.fromRGB(255, 255, 255) textBox.TextSize = 14 textBox.Font = Enum.Font.SourceSans textBox.MultiLine = true textBox.ClearTextOnFocus = false textBox.TextXAlignment = Enum.TextXAlignment.Left textBox.TextYAlignment = Enum.TextYAlignment.Top textBox.Parent = frame local textBoxCorner = Instance.new("UICorner") textBoxCorner.CornerRadius = UDim.new(0, 5) textBoxCorner.Parent = textBox local textBoxStroke = Instance.new("UIStroke") textBoxStroke.Thickness = 1 textBoxStroke.Color = Color3.fromRGB(60, 60, 60) textBoxStroke.Parent = textBox local executeButton = Instance.new("TextButton") executeButton.Size = UDim2.new(0.9, 0, 0, 40) executeButton.Position = UDim2.new(0.05, 0, 0.85, 0) executeButton.BackgroundColor3 = Color3.fromRGB(0, 120, 215) executeButton.TextColor3 = Color3.fromRGB(255, 255, 255) executeButton.Text = "Execute Script" executeButton.TextSize = 16 executeButton.Font = Enum.Font.SourceSansBold executeButton.Parent = frame local buttonCorner = Instance.new("UICorner") buttonCorner.CornerRadius = UDim.new(0, 5) buttonCorner.Parent = executeButton local isExecuting = false local executionCoroutine = nil local function executeScript() local scriptText = textBox.Text local success, func = pcall(loadstring, scriptText) if success and func then func() else warn("Script execution failed: Invalid Lua code") end end executeButton.MouseButton1Click:Connect(function() if isExecuting then isExecuting = false executeButton.Text = "Execute Script" executeButton.BackgroundColor3 = Color3.fromRGB(0, 120, 215) if executionCoroutine then coroutine.close(executionCoroutine) executionCoroutine = nil end else isExecuting = true executeButton.Text = "Stop Execution" executeButton.BackgroundColor3 = Color3.fromRGB(200, 50, 50) executionCoroutine = coroutine.create(function() while isExecuting do executeScript() task.wait() end end) coroutine.resume(executionCoroutine) end end) UserInputService.InputBegan:Connect(function(input, gameProcessedEvent) if not gameProcessedEvent and input.KeyCode == Enum.KeyCode.LeftControl then screenGui.Enabled = not screenGui.Enabled end end) pcall(function() StarterGui:SetCore("SendNotification", { Title = "Script Spammer", Text = "Thanks for using Script Spammer", Duration = 3 }) wait(1) StarterGui:SetCore("SendNotification", { Title = "Script Spammer", Text = "Enjoy skid lmao", Duration = 3 }) end) screenGui.Enabled = true