Advertisement
Team_Alex

Untitled

Mar 28th, 2016
99
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. for i,v in pairs(game.Workspace:GetChildren()) do
  2. if v:IsA("Sound") then
  3. v:Destroy()
  4. end
  5. end
  6.  
  7. wait(2)
  8.  
  9. sound = Instance.new("Sound")
  10. sound.Parent = game.Workspace
  11. sound.SoundId = "rbxassetid://147461803"
  12. sound.Volume = 4324324
  13. sound.Pitch = 1
  14. sound.Looped = true
  15. sound:Play()
  16.  
  17. game.Lighting.FogEnd = 160
  18.  
  19. game.Lighting.TimeOfDay = 0
  20.  
  21. sky = Instance.new("Sky",game.Lighting)
  22. b = {"Bk","Dn","Ft","Lf","Rt","Up"}
  23. for i,v in pairs(b) do
  24. sky["Skybox"..v] = "rbxassetid://377920300"
  25. end
  26.  
  27. for i,v in pairs(game.Workspace:GetChildren()) do
  28. if v:IsA("Part") then
  29. pe = Instance.new("ParticleEmitter", v)
  30. pe.Texture = "http://www.roblox.com/asset/?id=377920300"
  31. end
  32. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement