Advertisement
UnknownPaster

[ROBLOX] Fake Meteor

Jul 12th, 2013
345
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. --This ROBLOX Script Is Made By The Respected Owners.
  2. --Script Hidden For Privacy Of The Users. Script Hidden For Privacy Of The Users.
  3. --This script runs in an infinite loop. No name change or extra work required.
  4. while true do
  5. local m = Instance.new("Message")
  6. m.Parent = game.Workspace
  7. m.Text = "A meteor is coming towards us!!! AHHH!!!"
  8. wait(3)
  9. m:remove()
  10. local b = Instance.new("Part")
  11. b.Parent = game.Workspace
  12. b.Position = Vector3.new(0,1000,0)
  13. b.Size = Vector3.new(5,1,5)
  14. b.BrickColor = BrickColor.new(199)
  15. b.Transparency = 0
  16. wait(10)
  17. local n = Instance.new("Message")
  18. n.Parent = game.Workspace
  19. n.Text = "Oh, it was just a small rock..."
  20. wait(3)
  21. n:remove()
  22. wait(10)
  23. b:remove()
  24. wait(1000)
  25. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement