Advertisement
lolwuthahwaitwut

Untitled

Jul 14th, 2015
236
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.40 KB | None | 0 0
  1. for X = -2500, 2500, 512 do
  2.  
  3. for Z = -2500, 2500, 512 do
  4.  
  5. local P = Instance.new("Part")
  6.  
  7. P.Anchored = true
  8.  
  9. P.Locked = true
  10.  
  11. P.Size = Vector3.new(512,3,512)
  12. P.CFrame = CFrame.new(X,0,Z)
  13.  
  14. P.BrickColor = BrickColor.Green()
  15.  
  16. P.Parent = game.Workspace
  17.  
  18. end
  19.  
  20. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement