Mito91231

Untitled

Nov 13th, 2017
46
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.64 KB | None | 0 0
  1. --- Change Log: 2.Fist Person View While Holding OP Sword And Holding (W+A+Jumping and W+D+Jumping) Gives You Super Speed Bug Fixed
  2. --1.Not Working Upon Execution Bug Fixed
  3. ----------------------------------------------------------------------------------------------------------------------------------------------------
  4. --- Update News: Music Update
  5. --- Roblox User Name (DaneryTheGamer77)
  6. --- OP Sword v1.5
  7. --- Made By PugLover77
  8. wait (0.5)
  9. print "OP Sword v1.5 Loaded"
  10. local p = game.Players.LocalPlayer
  11. p.Character.Humanoid.WalkSpeed = 50 --- Set Walk Speed
  12. p.Character.Humanoid.MaxHealth = math.huge
  13. p.Character.Humanoid.JumpPower = 70 ---Set Jump Power
  14.  
  15. p.Backpack:ClearAllChildren()
  16.  
  17. local t = Instance.new("Tool",p.Backpack)
  18. t.Name = "God Sword"
  19. t.GripPos = Vector3.new(0,-20,0)
  20. t.GripUp = Vector3.new(0,0,1)
  21. local a = Instance.new("Part",t)
  22. a.Name = "Handle"
  23. a.Size = Vector3.new(.4,40,.4)
  24. a.Material = Enum.Material.Neon
  25. a.BrickColor = BrickColor.new'Bright blue' --- Set Color You Like
  26.  
  27. t.Activated:connect(function()
  28. for i,v in pairs(game.Players:GetChildren()) do
  29. if v.Name ~= game.Players.LocalPlayer.Name then
  30. v.Character.Humanoid.Health = 0
  31. end
  32. end
  33. end)
  34.  
  35. a.Touched:connect(function(ss)
  36. local c = game.Players:FindFirstChild(ss.Parent.Name)
  37. if c then
  38. c.Character.Humanoid.Health = 0 --- Dont Edit That
  39. end
  40. end)
  41.  
  42. s = Instance.new("Sound")
  43. s.Name = "Music"
  44. s.SoundId = "http://www.roblox.com/asset/?id=468952487" --- You Can Change The Id For The Music
  45. s.Looped = true
  46. s.Pitch = 1 --- How It Sounds
  47. s.Volume = 1000 --- Volume
  48. s.archivable = false
  49. s.Parent = game.Workspace
  50. wait(1)
  51. s:play()
Add Comment
Please, Sign In to add comment