--[[NEED A TOOL IN INVENTORY]] local target = "NAME" --[[Change this to the shortened username of who you want to kill]] for i, v in pairs(game.Players:GetPlayers()) do if v.Name:lower():sub(1,#target) == target:lower() then local tchar = v.Character local thrp = tchar.HumanoidRootPart local plr = game.Players.LocalPlayer local char = plr.Character local hum = char:FindFirstChildOfClass("Humanoid") local hrp = char.HumanoidRootPart local cam = workspace.Camera local anim = char.Animate local clone = hum:Clone() clone.Parent = char hum:Destroy() cam.CameraSubject = char anim.Disabled = true anim.Disabled = false if plr.Backpack:FindFirstChildOfClass("Tool") then clone:EquipTool(plr.Backpack:FindFirstChildOfClass("Tool")) else clone:UnequipTools() clone:EquipTool(plr.Backpack:FindFirstChildOfClass("Tool")) end local tool = char:FindFirstChildOfClass("Tool") task.wait(0.2) thrp.CFrame = tool.Handle.CFrame tool.AncestryChanged:Wait() hrp.CFrame = CFrame.new(Vector3.new(0,workspace.FallenPartsDestroyHeight + 1,0)) end end