Advertisement
Ben_Scripts343

TimeStop Script

Jun 14th, 2021
1,558
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.43 KB | None | 0 0
  1. local plr = game.Players.LocalPlayer
  2. local ms = plr:GetMouse()
  3. local hum = plr.Character.HumanoidRootPart
  4. local stop = false
  5.  
  6. ms.KeyDown:connect(function(Key)
  7. if Key == "e" then
  8. if stop == false then
  9. stop = true
  10. hum.Anchored = true
  11. else
  12. stop = false
  13. hum.Anchored = false
  14. end
  15. end
  16. end
  17. )
  18.  
  19. ms.KeyDown:connect(function(Key)
  20. if Key == "f" then
  21. if stop == true then
  22. hum.CFrame = hum.CFrame*CFrame.new(0,0,2.6)
  23. end
  24. end
  25. end
  26. )
  27.  
  28. ms.KeyDown:connect(function(Key)
  29. if Key == "r" then
  30. if stop == true then
  31. hum.CFrame = hum.CFrame*CFrame.new(0,0,-2.6)
  32. end
  33. end
  34. end
  35. )
  36.  
  37. ms.KeyDown:connect(function(Key)
  38. if Key == "z" then
  39. if stop == true then
  40. hum.CFrame = hum.CFrame*CFrame.Angles(1.2,0,0)
  41. end
  42. end
  43. end
  44. )
  45.  
  46. ms.KeyDown:connect(function(Key)
  47. if Key == "x" then
  48. if stop == true then
  49. hum.CFrame = hum.CFrame*CFrame.Angles(0,0,1.2)
  50. end
  51. end
  52. end
  53. )
  54.  
  55.  
  56. ms.KeyDown:connect(function(Key)
  57. if Key == "t" then
  58. if stop == true then
  59. hum.CFrame = hum.CFrame*CFrame.new(0,2,0)
  60. end
  61. end
  62. end
  63. )
  64.  
  65. ms.KeyDown:connect(function(Key)
  66. if Key == "y" then
  67. if stop == true then
  68. hum.CFrame = hum.CFrame*CFrame.new(0,-2,0)
  69. end
  70. end
  71. end
  72. )
  73.  
  74. print("Keybind:")
  75. print("-----------------")
  76. print("e-Anchor")
  77. print("r-Foward")
  78. print("f-Backward")
  79. print("f-Backward")
  80. print("z-Rotation")
  81. print("x-Rotation")
  82. print("t-Up")
  83. print("y-Down")
  84.  
  85.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement