Advertisement
Kaemi

METEOR

Feb 14th, 2017
229
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.61 KB | None | 0 0
  1. while true do
  2. local m = Instance.new("Message")
  3. m.Parent = game.Workspace
  4. m.Text = "A HUGE METEOR IS APPROACHING!!!!!!!"
  5. wait(3)
  6. m:destroy()
  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(7)
  14. b:destroy()
  15. for i, v in pairs(game.Players:GetChildren()) do
  16. expl = Instance.new("Explosion")
  17. expl.Parent = v.Character.Torso
  18. expl.BlastRadius = 100000000000000000
  19. expl.BlastPressure = 10
  20. expl.Position = game.Players.LocalPlayer.Character.Torso.Position
  21. end
  22. wait(1000)
  23. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement