of     1   

Oguzator
#228345866Saturday, December 02, 2017 9:18 PM GMT

I saw games with unlimited map Expanded Baseplate to around 20000 blocks or something You know how do that?
Becula
#228346019Saturday, December 02, 2017 9:22 PM GMT

You could just use size and change it to the max size then duplicate it and move it around....
Oguzator
#228346475Saturday, December 02, 2017 9:31 PM GMT

Doing 2024/48 idk And Duplicate Move it right and down for exact size and position take even for 1 a while
Becula
#228346797Saturday, December 02, 2017 9:38 PM GMT

Games can't have unlimited maps..... Only studio can have unlimited space.. I think they just changed the properies or did what i suggested.
Latine_Lemonade
#228346852Saturday, December 02, 2017 9:39 PM GMT

Baseplate size to 2000 > Make a function what duplicate and replace it, don't forget the "Wait()" before the function run again or your Studio probably will crash.
Oguzator
#228346998Saturday, December 02, 2017 9:41 PM GMT

i cant script btw But thx a lot for help
Latine_Lemonade
#228347420Saturday, December 02, 2017 9:50 PM GMT

Then do it: Baseplate Size > 2000 > Models(On your Studio) > Change the move Box to 2000 > Click on the BasePlate on the Explorer > Move it just for the sides This way is faster.
Oguzator
#228348086Saturday, December 02, 2017 10:02 PM GMT

but i have to move it right/left and up or down thats the hard point xd
Latine_Lemonade
#228348145Saturday, December 02, 2017 10:03 PM GMT

Right/Left/Front/Back, never Up/Down.
128Gigabytes
#228350899Saturday, December 02, 2017 10:58 PM GMT

local function createBlockMass(size, count) local blocks = Instance.new("Model", game.Workspace) local block = Instance.new("Part", nil) block.Anchored = true block.Locked = true block.Size = size for x = 1, count.X, 1 do for y = 1, count.Y, 1 do for z = 1, count.Z, 1 do local newBlock = block:clone() newBlock.CFrame = (CFrame.new(Vector3.new(-(count.X * size.X) / 2, -(count.Y * size.Y) / 2, -(count.Z * size.Z) / 2)) + Vector3.new((x * size.X), (y * size.Y), (z * size.Z))) newBlock.Parent = blocks end end wait(5) print("waiting " .. x .. "/" .. count.X) end print("done") return (blocks); end createBlockMass(Vector3.new(2048, 16, 2048), Vector3.new(25, 1, 25))
Oguzator
#228354804Sunday, December 03, 2017 12:25 AM GMT

no if i copy and paste then its above the normal baseplate that means i have to Down it

    of     1