RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"create a terrain that has a large terrain"
-- server script for generating a large terrain local terrainSize = 1000 -- change this value to adjust the size of the terrain local terrainHeight = 200 -- change this value to adjust the height of the terrain local terrain = game.Workspace.Terrain terrain:Clear() local region = Region3.new( Vector3.new(-terrainSize/2, 0, -terrainSize/2), Vector3.new(terrainSize/2, terrainHeight, terrainSize/2) ) local material = Enum.Material.Grass -- change this value to adjust the material of the terrain terrain:PasteRegion(region, 0, 0, 0, false, Enum.Material.Air.Value, material.Value)