Advertisement
DylanD2003

Untitled

Apr 8th, 2017
144
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.84 KB | None | 0 0
  1. local p = game.Players.LocalPlayer
  2. local playerLeaderstats = {}
  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=518936297"
  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://518936297"
  20.  
  21. end
  22.  
  23. print("Music executed!")
  24.  
  25. s = Instance.new("Sound")
  26.  
  27. s.Name = "Music"
  28.  
  29. s.SoundId = "http://www.roblox.com/asset/?id=514558366" --Put the id into there.
  30.  
  31. s.Looped = true
  32.  
  33. s.Pitch = 1 --You can edit these settings.
  34.  
  35. s.Volume = 4 --You can edit these settings.
  36.  
  37. s.archivable = false
  38.  
  39.  
  40.  
  41. s.Parent = game.Workspace
  42.  
  43.  
  44.  
  45. wait(1)
  46.  
  47.  
  48. s:play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement