Advertisement
Upscalefanatic3

Roblox Sword Fighting Assistant Script

Mar 31st, 2019
8,877
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. game.ReplicatedStorage.DefaultChatSystemChatEvents.SayMessageRequest:FireServer("/me has loaded Roblox Fighting Assistant", "All")
  2.  
  3. plr = game.Players.LocalPlayer
  4. mouse = plr:GetMouse()
  5. mouse.KeyDown:connect(function(key)
  6.  
  7. if key == "e" then
  8. game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame + Vector3.new(0,10,0)
  9. end
  10. end)
  11.  
  12. plr = game.Players.LocalPlayer
  13. mouse = plr:GetMouse()
  14. mouse.KeyDown:connect(function(key)
  15.  
  16. if key == "q" then
  17. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 250
  18. game.Players.LocalPlayer.Character.Humanoid:ChangeState(3)
  19. workspace.Gravity = 1000
  20. wait(.625)
  21. workspace.Gravity = 196.2
  22. game.Players.LocalPlayer.Character.Humanoid.JumpPower = 50
  23. end
  24. end)
  25.  
  26. plr = game.Players.LocalPlayer
  27. mouse = plr:GetMouse()
  28. mouse.KeyDown:connect(function(key)
  29.  
  30. if key == "r" then
  31. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = math.random(25,45)
  32. wait(math.random(.45,.55))
  33. game.Players.LocalPlayer.Character.Humanoid.WalkSpeed = 16
  34. end
  35. end)
  36.  
  37. plr = game.Players.LocalPlayer
  38. mouse = plr:GetMouse()
  39. mouse.KeyDown:connect(function(key)
  40.  
  41. if key == "t" then
  42. _=wait
  43. AnimationId="188632011"
  44. A=Instance.new("Animation")
  45. A.AnimationId = "rbxassetid://"..AnimationId
  46. k=game:GetService("Players").LocalPlayer.Character:FindFirstChild("Humanoid"):LoadAnimation(A)
  47. for i=1,math.random(6,9) do
  48. k:Play()
  49. k:AdjustSpeed(50/20)
  50. _(7.03125/50)
  51. end
  52. h = game.Players.LocalPlayer.Character.Humanoid
  53. tracks = h:GetPlayingAnimationTracks()
  54. for _,x in pairs(tracks)
  55. do x:Stop()
  56. end
  57. end
  58. end)
  59.  
  60. local Imput = game:GetService("UserInputService")
  61. local Plr = game.Players.LocalPlayer
  62. local Mouse = Plr:GetMouse()
  63.  
  64. function To(position)
  65. local Chr = Plr.Character
  66. if Chr ~= nil then
  67. Chr:MoveTo(position)
  68. end
  69. end
  70.  
  71. Imput.InputBegan:Connect(function(input)
  72. if input.UserInputType == Enum.UserInputType.MouseButton1 and Imput:IsKeyDown(Enum.KeyCode.LeftControl) then
  73. To(Mouse.Hit.p)
  74. end
  75. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement