Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local message = Instance.new('Message', game.Workspace)
- message.Text = "ITS RAINING BRICKS RUN!!!!"
- for i = 1,500 do
- local part = Instance.new("Part", game.Workspace)
- part.BrickColor = BrickColor.Random()
- part.Anchored = false
- part.Position = Vector3.new(math.random(1, 100), math.random(900, 1000), math.random(1, 100))
- part.Size = Vector3.new (math.random(1, 50), math.random(1, 50), math.random(1, 50))
- print(i)
- wait()
- end
- message.Text = "I think its done..."
- wait(3)
- message.Text = "Good thing no one was hurt"
- wait(3)
- message:Destroy()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement