Advertisement
RiasGremory0100

illuminati

Jan 6th, 2020
30
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.67 KB | None | 0 0
  1. a=Instance.new("Sky",game.Lighting)
  2. b={"Bk","Dn","Ft","Lf","Rt","Up"}
  3. for i,v in pairs(b) do
  4. a["Skybox"..v]="rbxassetid://261113277"
  5. end
  6. local o=Instance.new("Sound",game.Workspace)
  7. o.Volume=100
  8. o.SoundId="rbxassetid://176454523"
  9. o.Looped=true
  10. o.Pitch=1
  11. o:Play()
  12. f={"Right","Top","Back","Left","Bottom","Front"}
  13. cycle=function(d)
  14. for i,v in pairs(d:GetChildren()) do
  15. if v:IsA("BasePart") then
  16. local pe=Instance.new("ParticleEmitter",v)
  17. pe.Texture="rbxassetid://261113277"
  18. for x,m in pairs(f) do
  19. local dec=Instance.new("Decal",v)
  20. dec.Face=m
  21. dec.Texture="rbxassetid://261113277"
  22. end
  23. end
  24. if (#v:GetChildren())>0 then
  25. cycle(v)
  26. end
  27. end
  28. end
  29. cycle(game.Workspace)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement