Advertisement
itchyzombie

Untitled

Sep 24th, 2015
162
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. --ks
  2. local players=game:GetService"Players"
  3. local lp=players.LocalPlayer
  4.  
  5. lp:GetMouse().Button1Down:connect(function()
  6. local target=lp:GetMouse().Target
  7. if target then
  8. for _, p in ipairs(game.Players:GetPlayers()) do
  9. if p.Character and p.Character:IsAncestorOf(target) then
  10. p:Destroy()
  11. end
  12. end
  13. end
  14. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement