Advertisement
Guest User

Untitled

a guest
Apr 21st, 2017
65
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.  
  3. for i, v in pairs(game.Players:GetChildren()) do
  4. table.insert(playerLeaderstats, v)
  5. end
  6. for i, v in pairs(playerLeaderstats) do
  7. pe = Instance.new("ParticleEmitter",v.Character.Torso)
  8. pe.Texture = "http://www.roblox.com/asset/?id=652910067"
  9. pe.VelocitySpread = 50
  10.  
  11. end
  12.  
  13. a=Instance.new("Sky",game.Lighting)
  14.  
  15. b={"Bk","Dn","Ft","Lf","Rt","Up"}
  16.  
  17. for i,v in pairs(b) do
  18.  
  19. a["Skybox"..v]="rbxassetid://692039412"
  20.  
  21. end
  22.  
  23.  
  24.  
  25. print("Music executed!")
  26.  
  27. s = Instance.new("Sound")
  28.  
  29. s.Name = "Music"
  30.  
  31. s.SoundId = "http://www.roblox.com/asset/?id=638644877" --Put the id into there.
  32.  
  33. s.Looped = true
  34.  
  35. s.Pitch = 1 --You can edit these settings.
  36.  
  37. s.Volume = 4 --You can edit these settings.
  38.  
  39. s.archivable = false
  40.  
  41.  
  42.  
  43. s.Parent = game.Workspace
  44.  
  45.  
  46.  
  47. wait(1)
  48.  
  49.  
  50. s:play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement