Guest User

Untitled

a guest
Sep 25th, 2016
56
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  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
Add Comment
Please, Sign In to add comment