LanderDusty

Baseplate Permanent

Jul 18th, 2018
64
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. for X = -7500, 7500, 512 do
  2. for Z = -7500, 7500, 512 do
  3. local P = Instance.new("Part")
  4. P.Anchored = true
  5. P.Locked = true
  6. P.Size = Vector3.new(512,3,512) -- By Bouyer the Destroyer
  7. P.CFrame = CFrame.new(X,0,Z)
  8. P.BrickColor = BrickColor.Green()
  9. P.Parent = game.Workspace.Camera
  10. end
  11. end
Add Comment
Please, Sign In to add comment