Laith8888

Giant Meteor WITH EXPLOSION

Feb 6th, 2018
159
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.62 KB | None | 0 0
  1.  
  2. while true do
  3. local m = Instance.new("Message")
  4. m.Parent = game.Workspace
  5. m.Text = "A meteor is coming towards us!!! AHHH!!!"
  6. wait(3)
  7. m:destroy()
  8. local b = Instance.new("Part")
  9. b.Parent = game.Workspace
  10. b.Position = Vector3.new(0,5000,0)
  11. b.Size = Vector3.new(200,500,200)
  12. b.BrickColor = BrickColor.new(199)
  13. b.Transparency = 0
  14. wait(7)
  15. b:destroy()
  16. for i, v in pairs(game.Players:GetChildren()) do
  17. expl = Instance.new("Explosion")
  18. expl.Parent = v.Character.Torso
  19. expl.BlastRadius = 100000000000000000
  20. expl.BlastPressure = 10
  21. expl.Position = game.Players.LocalPlayer.Character.Torso.Position
  22. end
  23. wait(1000)
  24. end
Add Comment
Please, Sign In to add comment