Advertisement
TSG_lol

FE Helicopter Helicopter script

Mar 18th, 2023
3,439
1
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.11 KB | None | 1 0
  1. -- I DONT OWN THIS SCRIPT
  2. -- Credits to the owner
  3.  
  4. if game.Players.LocalPlayer.Character.Humanoid.RigType == Enum.HumanoidRigType.R6 then
  5. spawn(function()
  6. local speaker = game.Players.LocalPlayer
  7. local Anim = Instance.new("Animation")
  8. Anim.AnimationId = "rbxassetid://27432686"
  9. local bruh = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  10. bruh:Play()
  11. bruh:AdjustSpeed(0)
  12. speaker.Character.Animate.Disabled = true
  13. local hi = Instance.new("Sound")
  14. hi.Name = "Sound"
  15. hi.SoundId = "http://www.roblox.com/asset/?id=165113352"
  16. hi.Volume = 2
  17. hi.Looped = true
  18. hi.archivable = false
  19. hi.Parent = game.Workspace
  20. hi:Play()
  21.  
  22. local spinSpeed = 40
  23. local Spin = Instance.new("BodyAngularVelocity")
  24. Spin.Name = "Spinning"
  25. Spin.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  26. Spin.MaxTorque = Vector3.new(0, math.huge, 0)
  27. Spin.AngularVelocity = Vector3.new(0,spinSpeed,0)
  28.  
  29. end)
  30. else
  31. spawn(function()
  32. local speaker = game.Players.LocalPlayer
  33. local Anim = Instance.new("Animation")
  34. Anim.AnimationId = "rbxassetid://507776043"
  35. local bruh = game.Players.LocalPlayer.Character.Humanoid:LoadAnimation(Anim)
  36. bruh:Play()
  37. bruh:AdjustSpeed(0)
  38. speaker.Character.Animate.Disabled = true
  39. local hi = Instance.new("Sound")
  40. hi.Name = "Sound"
  41. hi.SoundId = "http://www.roblox.com/asset/?id=165113352"
  42. hi.Volume = 2
  43. hi.Looped = true
  44. hi.archivable = false
  45. hi.Parent = game.Workspace
  46. hi:Play()
  47.  
  48. local spinSpeed = 40
  49. local Spin = Instance.new("BodyAngularVelocity")
  50. Spin.Name = "Spinning"
  51. Spin.Parent = game.Players.LocalPlayer.Character.HumanoidRootPart
  52. Spin.MaxTorque = Vector3.new(0, math.huge, 0)
  53. Spin.AngularVelocity = Vector3.new(0,spinSpeed,0)
  54.  
  55.  
  56. end)
  57. end
  58. local Mouse = game:GetService("Players").LocalPlayer:GetMouse()
  59. local u = game.Players.LocalPlayer
  60. local urchar = u.Character
  61.  
  62. task.spawn(function()
  63.  
  64.  
  65. qUp = Mouse.KeyUp:Connect(function(KEY)
  66. if KEY == 'q' then
  67. urchar.Humanoid.HipHeight = urchar.Humanoid.HipHeight - 3
  68. end
  69. end)
  70. eUp = Mouse.KeyUp:Connect(function(KEY)
  71. if KEY == 'e' then
  72. urchar.Humanoid.HipHeight = urchar.Humanoid.HipHeight + 3
  73. end
  74. end)
  75.  
  76.  
  77. end)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement