Advertisement
SpacecowboyHX

Untitled

Aug 6th, 2020
163
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.34 KB | None | 0 0
  1. local parts = 100
  2. local track = 0
  3. while wait() do
  4. local all = workspace.Indencito:GetChildren()
  5. for i = 1,#all do
  6. if all[i].ClassName = "Part" then
  7. track = track+1
  8. if track<=parts then
  9. all[i]:Clone()
  10. else
  11. break
  12. end
  13. end
  14. end
  15. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement