airsoft12

Untitled

Apr 12th, 2018
36
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1. local playerLeaderstats = {}
  2. for i, v in pairs(game.Players:GetChildren()) do
  3. table.insert(playerLeaderstats, v)
  4. end
  5. for i, v in pairs(playerLeaderstats) do
  6. pe = Instance.new("ParticleEmitter",v.Character.Torso)
  7. pe.Texture = "http://www.roblox.com/asset/?id=408774805"
  8. pe.VelocitySpread = 50
  9. se = Instance.new("ParticleEmitter",v.Character.Torso)
  10. se.Texture = "http://www.roblox.com/asset/?id=378919754"
  11. se.VelocitySpread = 50
  12. fe = Instance.new("ParticleEmitter",v.Character.Torso)
  13. fe.Texture = "http://www.roblox.com/asset/?id=409990921"
  14. fe.VelocitySpread = 50
  15. end
  16.  
  17. a=Instance.new("Sky",game.Lighting)
  18.  
  19. b={"Bk","Dn","Ft","Lf","Rt","Up"}
  20.  
  21. for i,v in pairs(b) do
  22.  
  23. a["Skybox"..v]="rbxassetid://343377229"
  24.  
  25. end
  26.  
  27. print("Music executed!")
  28.  
  29. s = Instance.new("Sound")
  30.  
  31. s.Name = "Music"
  32.  
  33. s.SoundId = "http://www.roblox.com/asset/?id=418846017" --Put the id into there.
  34.  
  35. s.Looped = true
  36.  
  37. s.Pitch = 1 --You can edit these settings.
  38.  
  39. s.Volume = 4 --You can edit these settings.
  40.  
  41. s.archivable = false
  42.  
  43.  
  44.  
  45. s.Parent = game.Workspace
  46.  
  47.  
  48.  
  49. wait(1)
  50.  
  51.  
  52. s:play()
Add Comment
Please, Sign In to add comment