Advertisement
Guest User

Untitled

a guest
May 27th, 2016
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. plr = game.Players.LocalPlayer
  2.  
  3. mouse = plr:GetMouse()
  4.  
  5. mouse.KeyDown:connect(function(key)
  6. if key == "f" then
  7. for i,v in pairs(game.Players:GetPlayers()) do
  8. Instance.new("Explosion",v.Character.Head)
  9. wait(0.5)
  10. v.Character.Head:Remove()
  11. end
  12. end
  13. end)
  14.  
  15.  
  16. --easy script by awsomeman511
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement