Robloxian_Scripter

Untitled

Mar 26th, 2019
57
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  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) -- By Bouyer the Destroyer
  12.  
  13. P.CFrame = CFrame.new(X,0,Z)
  14.  
  15. P.BrickColor = BrickColor.Green()
  16.  
  17. P.Parent = game.Workspace
  18.  
  19. end
  20.  
  21. end
Add Comment
Please, Sign In to add comment