KAT Kill All Players

Uploaded On
Script Credit :- lopsidedAD
Features

Kill All Players

Press E to start it (it stops after you've teleported to all players, so press E to start it again when it stops) and spam click to kill everyone

Script
--BROUGHT TO YOU BY RobloxScripter.com!--

local key = game:GetService("UserInputService") --- this is meant for KAT but works for any game key.InputBegan:Connect(function(input) if input.KeyCode == Enum.KeyCode.E then for i,v in pairs(game.Players:GetChildren()) do if v ~= game.Players.LocalPlayer then game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = v.Character.Head.CFrame * CFrame.new(0,0,.4) wait(1) end end end end)