Advertisement
Maximalio

Untitled

Mar 19th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.93 KB | None | 0 0
  1.  
  2. wait (0.5)
  3. print "OP Sword v1.5 Loaded"
  4. local p = game.Players.LocalPlayer
  5. p.Character.Humanoid.WalkSpeed = 50 --- Set Walk Speed
  6. p.Character.Humanoid.MaxHealth = math.huge
  7. p.Character.Humanoid.JumpPower = 70 ---Set Jump Power
  8.  
  9. p.Backpack:ClearAllChildren()
  10.  
  11. local t = Instance.new("Tool",p.Backpack)
  12. t.Name = "God Sword"
  13. t.GripPos = Vector3.new(0,-20,0)
  14. t.GripUp = Vector3.new(0,0,1)
  15. local a = Instance.new("Part",t)
  16. a.Name = "Handle"
  17. a.Size = Vector3.new(.4,40,.4)
  18. a.Material = Enum.Material.Neon
  19. a.BrickColor = BrickColor.new'Bright blue' --- Set Color You Like
  20.  
  21. t.Activated:connect(function()
  22. for i,v in pairs(game.Players:GetChildren()) do
  23. if v.Name ~= game.Players.LocalPlayer.Name then
  24. v.Character.Humanoid.Health = 0
  25. end
  26. end
  27. end)
  28.  
  29. a.Touched:connect(function(ss)
  30. local c = game.Players:FindFirstChild(ss.Parent.Name)
  31. if c then
  32. c.Character.Humanoid.Health = 0 --- Dont Edit That
  33. end
  34. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement