Advertisement
Guest User

Untitled

a guest
Jun 25th, 2017
50
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. Instance.new("Part")
  2.  
  3.  
  4.  
  5. children = game.Workspace:GetChildren()
  6. while true do
  7. for_, child in ipairs(children) do
  8. if child.Name == "Part" then
  9. explosion = Instance.new("Explosion")
  10. explosion.Position = child.Position
  11. explosion.Parent = game.Workspace
  12.  
  13. end
  14. end
  15. wait(1)
  16. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement