Advertisement
BlueHasMeme

Untitled

Sep 18th, 2016
136
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.07 KB | None | 0 0
  1.  
  2. for Get,Players in ipairs(game.Players:GetPlayers()) do
  3.  
  4. for Get,Workspace in ipairs(game.Workspace:GetChildren()) do
  5.  
  6. if (Workspace.Name == Players.Name) then
  7.  
  8. ParticleEmitter = Instance.new("ParticleEmitter");
  9.  
  10. ParticleEmitter.Texture = ("rbxassetid://476076360");
  11.  
  12. ParticleEmitter.Parent = Workspace.Head;
  13.  
  14. end
  15.  
  16. end
  17.  
  18. end
  19.  
  20.  
  21.  
  22. for Get,Workspace in ipairs(game.Workspace:GetChildren()) do
  23.  
  24. ParticleEmitter = Instance.new("ParticleEmitter");
  25.  
  26. ParticleEmitter.Texture = ("rbxassetid://476075201");
  27.  
  28. ParticleEmitter.Parent = Workspace;
  29.  
  30. end
  31.  
  32.  
  33.  
  34. a=Instance.new("Sky",game.Lighting)
  35.  
  36. b={"Bk","Dn","Ft","Lf","Rt","Up"}
  37.  
  38. for i,v in pairs(b) do
  39.  
  40. a["Skybox"..v]="rbxassetid://459493380"
  41.  
  42. end
  43.  
  44.  
  45.  
  46. print("Music executed!")
  47.  
  48. s = Instance.new("Sound")
  49.  
  50. s.Name = "Music"
  51.  
  52. s.SoundId = "http://www.roblox.com/asset/?id=468952487" --Put the id into there.
  53.  
  54. s.Looped = true
  55.  
  56. s.Pitch = 1 --You can edit these settings.
  57.  
  58. s.Volume = 9 --You can edit these settings.
  59.  
  60. s.archivable = false
  61.  
  62.  
  63.  
  64. s.Parent = game.Workspace
  65.  
  66.  
  67.  
  68. wait(1)
  69.  
  70.  
  71. s:play()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement