coolgoldboy166

fin del mundo

Nov 1st, 2017
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. local Partz = Instance.new("Part", game.Workspace)
  2. Partz.Size = Vector3.new(4, 4.73, 4.3)
  3. Partz.Position = Vector3.new(-5.7, 2.365, -3.2)
  4. Partz.CanCollide = false
  5. Partz.Anchored = true
  6. Partz.Transparency = 0.3
  7. Partz.BrickColor = BrickColor.Yellow()
  8. local Music = Instance.new("Sound", game.Workspace)
  9. Music.SoundId = "rbxassetid://142603362"
  10. Music:Play()
  11.  
  12. while true do
  13. Partz.Touched:connect(function(Child)
  14. if Child.ClassName == "Part" then
  15. Child.Material = "CorrodedMetal"
  16. Child.Anchored = false
  17. Child.CanCollide = false
  18. local explosion = Instance.new("Explosion", game.Workspace)
  19. explosion.Position = Child.Position
  20. end
  21. end)
  22. wait()
  23. Partz.Size = Partz.Size + Vector3.new(1, 1, 1)
  24. Partz.Position = Vector3.new(-5.7, 2.365, -3.2)
  25. end
Add Comment
Please, Sign In to add comment