local Player = game.Players.LocalPlayer local ScreenGui = Instance.new("ScreenGui") local Frame = Instance.new("Frame") local AutoKillButton = Instance.new("TextButton") local EspButton = Instance.new("TextButton") local TextLabel = Instance.new("TextLabel") ScreenGui.Parent = Player:WaitForChild("PlayerGui") Frame.Size = UDim2.new(0, 300, 0, 200) Frame.Position = UDim2.new(0.5, -150, 0.5, -100) Frame.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Frame.Parent = ScreenGui Frame.Active = true Frame.Draggable = true TextLabel.Size = UDim2.new(1, 0, 0, 50) TextLabel.Position = UDim2.new(0, 0, 0, 0) TextLabel.Text = "Kiet_,Scriptgame" TextLabel.TextColor3 = Color3.fromRGB(255, 255, 255) TextLabel.BackgroundTransparency = 1 TextLabel.Parent = Frame AutoKillButton.Size = UDim2.new(1, 0, 0, 50) AutoKillButton.Position = UDim2.new(0, 0, 0, 50) AutoKillButton.Text = "Auto Kill" AutoKillButton.BackgroundColor3 = Color3.fromRGB(255, 0, 0) AutoKillButton.TextColor3 = Color3.fromRGB(255, 255, 255) AutoKillButton.Parent = Frame EspButton.Size = UDim2.new(1, 0, 0, 50) EspButton.Position = UDim2.new(0, 0, 0, 100) EspButton.Text = "ESP" EspButton.BackgroundColor3 = Color3.fromRGB(0, 255, 0) EspButton.TextColor3 = Color3.fromRGB(255, 255, 255) EspButton.Parent = Frame local function autoKill() for _, player in pairs(game.Players:GetPlayers()) do if player.Character and player.Character:FindFirstChild("Humanoid") then player.Character.Humanoid.Health = 0 end end end local function esp() for _, player in pairs(game.Players:GetPlayers()) do if player ~= Player and player.Character then local highlight = Instance.new("Highlight") highlight.Parent = player.Character highlight.Adornee = player.Character highlight.FillColor = Color3.new(1, 0, 0) highlight.OutlineColor = Color3.new(1, 1, 1) end end end AutoKillButton.MouseButton1Click:Connect(autoKill) EspButton.MouseButton1Click:Connect(esp)