Advertisement
RandomNewbieScripter

Untitled

Apr 14th, 2017
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.57 KB | None | 0 0
  1. local message = Instance.new('Message', game.Workspace)
  2. message.Text = "ITS RAINING BRICKS RUN!!!!"
  3. for i = 1,500 do
  4. local part = Instance.new("Part", game.Workspace)
  5. part.BrickColor = BrickColor.Random()
  6. part.Anchored = false
  7. part.Position = Vector3.new(math.random(1, 100), math.random(900, 1000), math.random(1, 100))
  8. part.Size = Vector3.new (math.random(1, 50), math.random(1, 50), math.random(1, 50))
  9. print(i)
  10. wait()
  11. end
  12. message.Text = "I think its done..."
  13. wait(3)
  14. message.Text = "Good thing no one was hurt"
  15. wait(3)
  16. message:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement