Advertisement
Guest User

Roblox admin particle script test

a guest
Apr 27th, 2017
331
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=642338277"
  2. t2 = "http://www.roblox.com/asset/?id=642338277"
  3. t3 = "http://www.roblox.com/asset/?id=642338277"
  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 = 500
  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 = 850
  19. end
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement