Advertisement
Guest User

NotSo

a guest
Aug 18th, 2018
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.84 KB | None | 0 0
  1. --Spam Sword--
  2.  
  3. local player = game.Players.LocalPlayer
  4. local player2 = game.Players.LocalPlayer
  5. character2 = player2.Character
  6. local Mouse = player:GetMouse()
  7. Mouse.KeyDown:connect(function(key)
  8. if key == "r" then
  9. player2.Backpack.SwordThrow.RemoteEvent:FireServer(Mouse.Hit.p)
  10. end
  11. end)
  12.  
  13.  
  14. --Spam E--
  15.  
  16.  
  17. local player = game.Players.LocalPlayer
  18. local Mouse = player:GetMouse()
  19. Mouse.KeyDown:connect(function(key)
  20. if key == "e" then
  21. local player2 = game.Players.LocalPlayer
  22. local character2 = player2.Character
  23. player2.Backpack.StrongPunch.RemoteEvent:FireServer()
  24. local p = Instance.new("Part", character2.Effects)
  25. game.Debris:AddItem(p, 0.3)
  26. p.CanCollide = false
  27. p.Anchored = false
  28. local RightArm = character2["Right Arm"]
  29. p.Size = RightArm.Size
  30. p.Transparency = 1
  31. local w = Instance.new("Weld", p)
  32. w.Part0 = RightArm
  33. w.Part1 = p
  34. p.Touched:connect(function(hit)
  35. local ehum = hit.Parent:findFirstChild("Humanoid")
  36. if ehum ~= character2.Humanoid then
  37. player2.Backpack.StrongPunch.Damage:FireServer(hit, ehum)
  38. end
  39. end)
  40. end
  41. end)
  42.  
  43. --The Hand--
  44.  
  45. local player = game.Players.LocalPlayer
  46. local player2 = game.Players.LocalPlayer
  47. local character2 = player2.Character
  48. local Mouse = player:GetMouse()
  49. Mouse.KeyDown:connect(function(key)
  50. if key =="e" then
  51. game:GetService("Players").LocalPlayer.Backpack.Scrape1.RemoteEvent:FireServer(Vector3.new(156.372696, 4.56704378, 22.5861511))
  52. end
  53. end)
  54.  
  55. --Part 3 TS--
  56.  
  57. --Star part 3 ts
  58. --TimeStop
  59. local player2 = game.Players.LocalPlayer
  60. local Mouse = player2:GetMouse()
  61. cooldown = 0
  62. Mouse.KeyDown:connect(function(key)
  63. if key == "y" and cooldown == 0 and not player2:findFirstChild("TCooldown") then
  64. local player = game.Players.LocalPlayer
  65. local character = player.Character
  66. cooldown = 1
  67. game.Lighting.GetTimeInSeconds:FireServer(character, "TheWorld")
  68. wait(40)
  69. cooldown = 0
  70. end
  71. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement