Advertisement
Guest User

Untitled

a guest
Apr 28th, 2017
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.58 KB | None | 0 0
  1. local s = Instance.new("Sound")
  2.  
  3. s.Name = "Sound"
  4. s.SoundId = "http://www.roblox.com/asset/?id=383701702" -- < sound id
  5. s.Volume = 10
  6. s.PlayOnRemove = true
  7. s.Looped = false
  8. s.archivable = false
  9.  
  10. s.Parent = game.Workspace
  11.  
  12. wait(3)
  13.  
  14. s:play()
  15.  
  16. wait()
  17.  
  18. wait()
  19.  
  20. while wait(0.1) do
  21. p = Instance.new("Part",game.Workspace)
  22. sm = Instance.new("BlockMesh",p)
  23. p.Size = Vector3.new(100,100,100) -- <size of blocks
  24. p.CanCollide = true
  25. p.Position = Vector3.new(math.random(-250,250),1000,math.random(-250,250))
  26. p.BrickColor = BrickColor.new("Light blue") --< color you want
  27. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement