Advertisement
NyonicBear

Emitter 2

Mar 3rd, 2016
114
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. Player=game:GetService("Players").LocalPlayer
  2.  
  3. Character=Player.Character
  4.  
  5. Torso=Character.Torso
  6.  
  7. local wing2 = Instance.new ("ParticleEmitter")
  8.  
  9. wing2.Parent = Torso
  10.  
  11. wing2.Size = NumberSequence.new(2)
  12.  
  13. wing2.Lifetime = NumberRange.new(1,1)
  14.  
  15. wing2.Speed = NumberRange.new(1)
  16.  
  17. wing2.Rate = (300)
  18.  
  19. wing2.LockedToPart = true
  20.  
  21. wing2.EmissionDirection = "Back"
  22.  
  23. while true do
  24.  
  25. wing2.Acceleration = Vector3.new(-20,0,0)
  26.  
  27. wait (0.7)
  28.  
  29. wing2.Acceleration = Vector3.new(-20,-15,0)
  30.  
  31. wait(0.7)
  32.  
  33. wing2.Acceleration = Vector3.new(-15,-20,0)
  34.  
  35. wait(0.7)
  36.  
  37. wing2.Acceleration = Vector3.new(0,-20,0)
  38.  
  39. wait(0.7)
  40.  
  41. wing2.Acceleration = Vector3.new(0,-20,-15)
  42.  
  43. wait(0.7)
  44.  
  45. wing2.Acceleration = Vector3.new(0,-15,-20)
  46.  
  47. wait(0.7)
  48.  
  49. wing2.Acceleration = Vector3.new(0,0,-20)
  50.  
  51. wait(0.7)
  52. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement