Advertisement
Guest User

Untitled

a guest
Jul 17th, 2019
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1. local object = game:GetService("Workspace").Bar1
  2.  
  3. for i,v in pairs(object:GetChildren()) do
  4. if v:IsA("Model") then
  5. v:Destroy()
  6. end
  7. end
  8.  
  9. local object = game:GetService("Workspace").Bar2
  10.  
  11. for i,v in pairs(object:GetChildren()) do
  12. if v:IsA("Model") then
  13. v:Destroy()
  14. end
  15. end
  16.  
  17. local object = game:GetService("Workspace").Bar3
  18.  
  19. for i,v in pairs(object:GetChildren()) do
  20. if v:IsA("Model") then
  21. v:Destroy()
  22. end
  23. end
  24.  
  25. local object = game:GetService("Workspace").Bar4
  26.  
  27. for i,v in pairs(object:GetChildren()) do
  28. if v:IsA("Model") then
  29. v:Destroy()
  30. end
  31. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement