Advertisement
memesbruh03

The Best Particle Script EVER

Nov 13th, 2016
524
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.97 KB | None | 0 0
  1. base=workspace.Base
  2. fromimage={184117159,152153926,165264077,138755644,165421413,161813212,175457792,176716254,169639160,175260958,184208336,149275351,158598964,161952701,165293299,174574505,175457812,174574487,184116883,175457825,176716168,198740102,150697140,199537353,175457841,169639394,176716271,165420287,165294043,175260931,184117552,175457856,174860117,176716234,165933320,151262317,170269825,169726287,152431855,164086212,140256717,176716208,151266152,157760087,184120683,175260977,177061512,151259340,174574521,164439035,176716188,}
  3. particles=Instance.new("ParticleEmitter",base)
  4. particles.Texture="rbxassetid://"..fromimage[math.random(1,#fromimage)]
  5. particles.Acceleration=Vector3.new(0,-200,0)
  6. particles.Lifetime=NumberRange.new(10,50)
  7. particles.Rate=99999
  8. particles.RotSpeed=NumberRange.new(1000)
  9. particles.Speed=NumberRange.new(10,200)
  10. particles.VelocitySpread=NumberRange.new(5,50)
  11. particles.Name="custom"
  12.  
  13. -- what's next is something i wanted to do for fun...
  14.  
  15. fromasset={323166238,184790966,468390137,325496888,156806897,468448329,151448999,146054931,164147183,143735700,272138840,326466292,263152724,238763293,301507576,263194179,336522581,273645694,301385986,321186379,401312066,145616154,175258940,162750595,331032424,251285681,180872085,260951229,162206323,5985139,277251227,272616483,247489019,315386334,241042614,}
  16. sound=Instance.new("Sound",base)
  17. sound.SoundId="rbxassetid://"..fromasset[math.random(1,#fromasset)]
  18. sound.PlaybackSpeed=1
  19. sound.Volume=10
  20.  
  21. sound:Play()
  22.  
  23. top={"You know who!","Everybody knows who they are","Let's do it this way","I like the way you feel","Nobody disapproves of this stuff!","SoulfireForever = Cancer","Noice.","( ?° ?? ?°)","The way you feel makes me proud","I like the way you feel","You made my day better","This is so beautiful","Everybody knows how to be cool.","garmo already hacked SoulfireForever's place, now join in.","It's hip to be cool",}
  24. hint=Instance.new("Hint",workspace)
  25. hint.Text=top[math.random(1,#top)]
  26.  
  27. -- end --
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement