--// modify the bottom to your username local Players = game:GetService("Players") local lp = Players.LocalPlayer local RS = game:GetService("ReplicatedStorage") -- 🛰 Remote (Yeah this is actually the remote 💀) local remote = RS:WaitForChild("suckmydicknigga") -- 🎮 GUI Setup local gui = Instance.new("ScreenGui", lp:WaitForChild("PlayerGui")) gui.Name = "ModernKillGUI" gui.ResetOnSpawn = false -- 💠 Frame local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 220, 0, 120) frame.Position = UDim2.new(0.5, -110, 0.5, -60) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.Parent = gui frame.Active = true frame.Draggable = true -- Rounded corners local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0, 10) -- 🔰 Title local title = Instance.new("TextLabel", frame) title.Size = UDim2.new(1, 0, 0, 35) title.Position = UDim2.new(0, 0, 0, 0) title.Text = "Kill Panel" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextScaled = true title.BackgroundTransparency = 1 -- 🔘 Fire Once Button local fireButton = Instance.new("TextButton", frame) fireButton.Size = UDim2.new(0.9, 0, 0, 40) fireButton.Position = UDim2.new(0.05, 0, 0.5, -20) fireButton.Text = "Kill All" fireButton.TextColor3 = Color3.fromRGB(255, 255, 255) fireButton.BackgroundColor3 = Color3.fromRGB(0, 170, 0) fireButton.Font = Enum.Font.Gotham fireButton.TextScaled = true fireButton.Parent = frame -- Button corners local btnCorner = Instance.new("UICorner", fireButton) btnCorner.CornerRadius = UDim.new(0, 8) -- 💥 Fire Action fireButton.MouseButton1Click:Connect(function() local target = Players:FindFirstChild("PutYourUsernameHereToWork") -- Change target here if needed if target then remote:FireServer("Check", true, target) else warn("⚠️ Player not found.") end end)