local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local player = Players.LocalPlayer local screenGui = Instance.new("ScreenGui") screenGui.Name = "KillGUI" screenGui.ResetOnSpawn = false screenGui.IgnoreGuiInset = true screenGui.ZIndexBehavior = Enum.ZIndexBehavior.Global screenGui.DisplayOrder = 1000 screenGui.Parent = player:WaitForChild("PlayerGui") local openFrame = Instance.new("Frame") openFrame.Size = UDim2.new(0, 80, 0, 40) openFrame.Position = UDim2.new(0, 10, 0.4, 0) openFrame.BackgroundColor3 = Color3.fromRGB(60, 200, 100) openFrame.Active = true openFrame.Draggable = true openFrame.ZIndex = 10 openFrame.Parent = screenGui local openButton = Instance.new("TextButton") openButton.Text = "Open" openButton.Size = UDim2.new(1, 0, 1, 0) openButton.TextScaled = true openButton.Font = Enum.Font.SourceSansBold openButton.ZIndex = 11 openButton.Parent = openFrame local mainFrame = Instance.new("Frame") mainFrame.Name = "MainFrame" mainFrame.Size = UDim2.new(0, 200, 0, 140) mainFrame.Position = UDim2.new(0, 100, 0.4, 0) mainFrame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) mainFrame.Visible = false mainFrame.Active = true mainFrame.Draggable = true mainFrame.ZIndex = 10 mainFrame.Parent = screenGui local creditLabel = Instance.new("TextLabel") creditLabel.Size = UDim2.new(1, 0, 0, 20) creditLabel.Position = UDim2.new(0, 0, 1, -20) creditLabel.BackgroundTransparency = 1 creditLabel.TextColor3 = Color3.new(1, 1, 1) creditLabel.Font = Enum.Font.SourceSansItalic creditLabel.TextScaled = true creditLabel.Text = "Made By 3T3RN4L999" creditLabel.ZIndex = 11 creditLabel.Parent = mainFrame openButton.MouseButton1Click:Connect(function() mainFrame.Visible = not mainFrame.Visible openButton.Text = mainFrame.Visible and "Close" or "Open" end) local yOffset = 10 local function createButton(text, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.9, 0, 0, 30) btn.Position = UDim2.new(0.05, 0, 0, yOffset) btn.BackgroundColor3 = Color3.fromRGB(70, 130, 180) btn.TextColor3 = Color3.new(1, 1, 1) btn.Font = Enum.Font.SourceSansBold btn.TextScaled = true btn.Text = text btn.ZIndex = 11 btn.Parent = mainFrame btn.MouseButton1Click:Connect(callback) yOffset = yOffset + 35 return btn end createButton("Kill All", function() local args = { ReplicatedStorage:WaitForChild("KillAllRequest") } ReplicatedStorage:WaitForChild("KillAllRequest"):FireServer(unpack(args)) end) local spamming = false local spamConnection local spamButton spamButton = createButton("Spam Kill All [OFF]", function() spamming = not spamming spamButton.Text = spamming and "Spam Kill All [ON]" or "Spam Kill All [OFF]" if spamming then spamConnection = true task.spawn(function() while spamConnection do local args = { ReplicatedStorage:WaitForChild("KillAllRequest") } ReplicatedStorage:WaitForChild("KillAllRequest"):FireServer(unpack(args)) task.wait(0.05) end end) else spamConnection = false end end)