airsoft12

Untitled

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