RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make a simple remove terrain script"
```lua -- server script (ServerScriptService) local terrain = game.Workspace.Terrain -- Define the region to remove terrain from (using Region3) local lowerCorner = Vector3.new(-50, -50, -50) local upperCorner = Vector3.new(50, 50, 50) local region = Region3.new(lowerCorner, upperCorner) -- Remove the terrain in the defined region terrain:ClearRegion(region, true) ```