Advertisement
mr2meows

meteor shower

Nov 6th, 2017
131
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. while true do
  2. wait(1)
  3. local p = Instance.new("Part")
  4. p.Parent = game.Workspace
  5. p.Position = Vector3.new ((math.random(-100, 100)),100,(math.random(-100,100)))
  6. p.Size = Vector3.new( 22, 22, 22) --Change the numbers to change the size from it.
  7. p.BrickColor = BrickColor.new(21)
  8. p.Transparency= 0
  9. p.Reflectance= .1
  10. p.Shape = 0
  11. p.Locked = true
  12. p.Anchored = false
  13. p.CanCollide = true
  14. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement