File size: 298 Bytes
0712d5f
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
-- src/ReplicatedStorage/Shared/PlotConfig.lua
local PlotConfig = {
    GridSize = 2, -- Grid snapping increment in studs
    MaxItemsPerPlot = 1000, -- Limit for performance
    
    -- Dimensions of the claimable land
    PlotDimensions = Vector3.new(200, 1, 200),
}

return PlotConfig