Advertisement
PR0J3CT11

Untitled

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