Advertisement
SubScripts

666

Apr 16th, 2019
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.26 KB | None | 0 0
  1. function w666(what)
  2. for i,v in pairs(what:GetChildren()) do
  3. if v:IsA("Part") then
  4. v.BrickColor = BrickColor.new("Really Red")
  5. v.Material = "Neon"
  6. Instance.new("Fire",v).Size = 30
  7. w666(v)
  8. elseif v:IsA("Model") then
  9. w666(v)
  10. end
  11. end
  12. end
  13.  
  14. w666(workspace)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement