SHOW:
|
|
- or go back to the newest paste.
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) |
9 | + | b.Position = Vector3.new(0,1000,0) |
10 | - | b.Size = Vector3.new(200,500,200) |
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 |