Advertisement
Guest User

Untitled

a guest
Apr 26th, 2018
54
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.36 KB | None | 0 0
  1. t = "rbxassetid://45120559"
  2. local p = game.Players:GetPlayers()
  3. local w = game.Workspace:GetChildren()
  4. for i,v in pairs(p) do
  5. pe = Instance.new("ParticleEmitter", v.Character.Torso)
  6. pe.Texture = t
  7. pe.VelocitySpread = 100
  8. end
  9. for i= 1,#w do
  10. if w[i]:isA("BasePart") then
  11. pe = Instance.new("ParticleEmitter", w[i])
  12. pe.Texture = t
  13. pe.VelocitySpread = 5
  14. end end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement