Untitled


SUBMITTED BY: Guest

DATE: March 11, 2017, 8:45 a.m.

FORMAT: Text only

SIZE: 374 Bytes

HITS: 698

  1. while true do
  2. local m = Instance.new("Message")
  3. m.Parent = game.Workspace
  4. m.Text = "A meteor is coming towards us!!! AHHH!!!"
  5. wait(3)
  6. m:remove()
  7. local b = Instance.new("Part")
  8. b.Parent = game.Workspace
  9. b.Position = Vector3.new(0,5000,0)
  10. b.Size = Vector3.new(200,500,200)
  11. b.BrickColor = BrickColor.new(199)
  12. b.Transparency = 0
  13. wait(10)
  14. b:remove()
  15. wait(1000)
  16. end

comments powered by Disqus