Advertisement
RiasGremory0100

illuminati b

Apr 2nd, 2025
6
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. cycle=function(d)
  2. for i,v in pairs(d:GetChildren()) do
  3. if v:IsA("BasePart") then
  4. local pe=Instance.new("ParticleEmitter",v)
  5. pe.Texture="rbxassetid://261113277"
  6. for x,m in pairs(f) do
  7. local dec=Instance.new("Decal",v)
  8. dec.Face=m
  9. dec.Texture="rbxassetid://261113277"
  10. end
  11. end
  12. if (#v:GetChildren())>0 then
  13. cycle(v)
  14. end
  15. end
  16. end
  17. cycle(game.Workspace)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement