Guest User

Untitled

a guest
Jul 30th, 2016
63
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.49 KB | None | 0 0
  1. t1 = "http://www.roblox.com/asset/?id=223238256"
  2. t2 = "http://www.roblox.com/asset/?id=201788175"
  3. t3 = "http://www.roblox.com/asset/?id=261113277"
  4.  
  5. local p = game.Players:GetChildren()
  6. local w = game.Workspace:GetChildren()
  7.  
  8. for i,v in pairs(p) do
  9. pe = Instance.new("ParticleEmitter", v.Character.Torso)
  10. pe.Texture = t3
  11. pe.VelocitySpread = 100
  12. end
  13.  
  14. for i= 1,#w do
  15. if w[i]:isA("BasePart") then
  16. pe = Instance.new("ParticleEmitter", w[i])
  17. pe.Texture = t3
  18. pe.VelocitySpread = 5
  19. end
  20. end
Add Comment
Please, Sign In to add comment