Advertisement
Guest User

Untitled

a guest
Dec 14th, 2017
112
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.90 KB | None | 0 0
  1. wait(1)
  2. --THELEGEND27 Suit
  3. local p = game.Players.LocalPlayer --prepare for i,v in pairs :))))))
  4. p.Character.Humanoid.WalkSpeed = 22
  5. p.Character.Humanoid.MaxHealth = 250
  6. p.Character.Humanoid.JumpPower = 50
  7.  
  8. p.Backpack:ClearAllChildren()
  9.  
  10. local t = Instance.new("Tool",p.Backpack)
  11. t.Name = "thelegend27"
  12. t.GripPos = Vector3.new(0,-6,0)
  13. t.GripUp = Vector3.new(0,0,1)
  14. local a = Instance.new("Part",t)
  15. a.Name = "Handle"
  16. a.Size = Vector3.new(.4,15,.4)
  17. a.Material = Enum.Material.Neon
  18. a.BrickColor = BrickColor.new'Really blue'
  19.  
  20. t.Activated:connect(function()
  21. for i,v in pairs(game.Players:GetChildren()) do
  22. if v.Name ~= game.Players.LocalPlayer.Name then
  23. v.Character.Humanoid.Health = 0
  24. end
  25. end
  26. end)
  27.  
  28. a.Touched:connect(function(ss)
  29. local c = game.Players:FindFirstChild(ss.Parent.Name)
  30. if c then
  31. c.Character.Humanoid.Health = 0
  32. end
  33. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement