Advertisement
dahpiglz

Untitled

Aug 15th, 2017
122
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.64 KB | None | 0 0
  1. se = Instance.new("Part")
  2. se.Parent = game.Workspace
  3. se.Position = Vector3.new(-100, 0, -100)
  4. se.Size = Vector3.new(25,4,25)
  5. se.CanCollide = false
  6. se.Anchored = true
  7.  
  8. for I=1,25 do
  9. for l=1,25 do
  10. se.Position = se.Position + Vector3.new(0,0,25)
  11. p = se:Clone()
  12. p.BrickColor = BrickColor.new("Bright green")
  13. p.Material = ("Grass")
  14. p.CanCollide = false
  15. p.Parent = game.Workspace.Camera
  16. p.Anchored = true
  17. r = math.random(-1.1,1.1)
  18. p.Position = p.Position + Vector3.new(0, r, 0)
  19. p.Size = Vector3.new(25,4,25)
  20. p.CanCollide = true
  21. end
  22. se.Position = se.Position + Vector3.new(25,0,-625)
  23. end
  24. game.Workspace.Base:Remove()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement