Tplayz

:c

Mar 3rd, 2017
43
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 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,1000,0)
  10. b.Size = Vector3.new(5,1,5)
  11. b.BrickColor = BrickColor.new(199)
  12. b.Transparency = 0
  13. wait(10)
  14. local n = Instance.new("Message")
  15. n.Parent = game.Workspace
  16. n.Text = "Oh, it was just a small rock..."
  17. wait(3)
  18. n:remove()
  19. wait(10)
  20. b:remove()
  21. wait(1000)
  22. end
Add Comment
Please, Sign In to add comment