Advertisement
Ben_Scripts343

Fe Cop

May 27th, 2021
103
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.99 KB | None | 0 0
  1. --keybind e
  2. plr = game.Players.LocalPlayer
  3. dead = false
  4. char = plr.Character
  5.  
  6. rarm = char["Right Arm"]
  7. larm = char["Left Arm"]
  8. lleg = char["Left Leg"]
  9. rleg = char["Right Leg"]
  10. hum = char["HumanoidRootPart"]
  11.  
  12. rarm:BreakJoints()
  13. larm:BreakJoints()
  14. lleg:BreakJoints()
  15. rleg:BreakJoints()
  16. wait(0.9)
  17.  
  18.  
  19. l = Instance.new("Attachment",larm)
  20. l.Rotation = Vector3.new(30,0,-40)
  21. l.Position = Vector3.new(0.2, -0.2, -1)
  22.  
  23. h = Instance.new("Attachment", hum)
  24.  
  25. r = Instance.new("Attachment",rarm)
  26. r.Rotation = Vector3.new(30,0,40)
  27. r.Position = Vector3.new(-0.2, -0.2, -1)
  28.  
  29.  
  30. ll = Instance.new("Attachment",lleg )
  31. ll.Rotation = Vector3.new(0,0,0)
  32. ll.Position = Vector3.new(0.4, 2, 0)
  33.  
  34. rl = Instance.new("Attachment", rleg)
  35. rl.Rotation = Vector3.new(0,0,0)
  36. rl.Position = Vector3.new(-0.5, 2, 0)
  37.  
  38. --rarm
  39. rap = Instance.new("AlignPosition",rarm)
  40. rap.Attachment0 = r
  41. rap.Attachment1 = h
  42. rap.RigidityEnabled = true
  43.  
  44.  
  45. rao = Instance.new("AlignOrientation",rarm)
  46. rao.Attachment0 = r
  47. rao.Attachment1 = h
  48. rao.RigidityEnabled = true
  49.  
  50. --larm
  51. lap = Instance.new("AlignPosition",larm)
  52. lap.Attachment0 = l
  53. lap.Attachment1 = h
  54. lap.RigidityEnabled = true
  55.  
  56. lao = Instance.new("AlignOrientation",larm)
  57. lao.Attachment0 = l
  58. lao.Attachment1 = h
  59. lao.RigidityEnabled = true
  60.  
  61.  
  62. --lleg
  63. llap = Instance.new("AlignPosition", lleg)
  64. llap.Attachment0 = ll
  65. llap.Attachment1 = h
  66. llap.RigidityEnabled = true
  67.  
  68. llao = Instance.new("AlignOrientation", lleg)
  69. llao.Attachment0 = ll
  70. llao.Attachment1 = h
  71. llao.RigidityEnabled = true
  72.  
  73. --rleg
  74. rlap = Instance.new("AlignPosition", rleg)
  75. rlap.Attachment0 = rl
  76. rlap.Attachment1 = h
  77. rlap.RigidityEnabled = true
  78.  
  79. rlao = Instance.new("AlignOrientation", rleg)
  80. rlao.Attachment0 = rl
  81. rlao.Attachment1 = h
  82. rlao.RigidityEnabled = true
  83.  
  84.  
  85. game.Players.LocalPlayer:GetMouse().KeyDown:Connect(function(k)
  86. if k == "e" then
  87.  
  88. r.Rotation = Vector3.new(0,0,0)
  89. r.Position = Vector3.new(-1.5, 0, 0)
  90.  
  91. wait(0.1)
  92.  
  93. r.Rotation = Vector3.new(-20,0,0)
  94. r.Position = Vector3.new(-1.5, 0, 0)
  95.  
  96. wait(0.1)
  97.  
  98. r.Rotation = Vector3.new(-40,0,0)
  99. r.Position = Vector3.new(-1.5, -0.7, 0)
  100.  
  101. wait(0.1)
  102.  
  103. r.Rotation = Vector3.new(-60,0,0)
  104. r.Position = Vector3.new(-1.5, -0.8, 0.4)
  105.  
  106. wait(0.1)
  107.  
  108. r.Rotation = Vector3.new(-90,0,0)
  109. r.Position = Vector3.new(-1.5, -0.9, 1)
  110.  
  111. wait(0.5)
  112. r.Rotation = Vector3.new(-90,0,0)
  113. r.Position = Vector3.new(-1.5, 1.4, 1)
  114.  
  115. wait(0.9)
  116.  
  117. r.Rotation = Vector3.new(30,0,40)
  118. r.Position = Vector3.new(-0.2, -0.2, -1)
  119. end
  120. end
  121. )
  122.  
  123.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement