DrawingJhon

Helicopter

Nov 27th, 2021 (edited)
413
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.10 KB | None | 0 0
  1. local character = owner.Character
  2.  
  3. if character:findFirstChild("Animate") and character.Animate:IsA("Script") then
  4.     character.Animate:Destroy()
  5. end
  6.  
  7. NLS([[for i, v in pairs(owner.Character.Humanoid:GetPlayingAnimationTracks()) do v:Stop() end]], character)
  8.  
  9. local torso = character.Torso
  10. local rarm = torso["Right Shoulder"]
  11. local larm = torso["Left Shoulder"]
  12.  
  13. rarm.C0 = rarm.C0 * CFrame.Angles(math.rad(-90), 0, 0) * CFrame.new(0, -0.5, -0.5)
  14. larm.C0 = larm.C0 * CFrame.Angles(math.rad(-90), 0, 0) * CFrame.new(0, -0.5, -0.5)
  15.  
  16. local bv = Instance.new("BodyAngularVelocity", torso)
  17. bv.MaxTorque = Vector3.new(math.huge, math.huge, math.huge)
  18. bv.AngularVelocity = Vector3.new(0, 20, 0)
  19.  
  20. local bg = Instance.new("BodyGyro", torso)
  21. bg.MaxTorque = Vector3.new(math.huge, 0, math.huge)
  22. bg.CFrame = CFrame.new() * CFrame.Angles(0, 0, 0)
  23.  
  24. local bb = Instance.new("BodyVelocity", torso)
  25. bb.MaxForce = Vector3.new(0, math.huge, 0)
  26. bb.Velocity = Vector3.new(0, 10, 0)
  27.  
  28. local sound = Instance.new("Sound", torso)
  29. sound.Volume = 2
  30. sound.Looped = true
  31. sound.SoundId = "rbxassetid://7971906637"
  32. sound:Play()
Add Comment
Please, Sign In to add comment