Advertisement
sIendytubble

ha idk

Jun 17th, 2020
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.43 KB | None | 0 0
  1. function desize(part)
  2. coroutine.resume(coroutine.create(function()
  3. part.Size = part.Size - Vector3.new(0.05)
  4. end))
  5. end
  6. for i,v in pairs(workspace:GetDescendants()) do
  7. if v.ClassName == "Part" then
  8. v.Name = "Oof"
  9. v.Material = "Neon"
  10. v.BrickColor = BrickColor.new("Cyan")
  11. v.Anchored = true
  12. for i,v in pairs(v:GetChildren()) do
  13. if v.ClassName == "Decal" then
  14. v:Destroy()
  15. end
  16. end
  17. desize(v)
  18. end
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement