How do I save the terrain from a game and then load it in another game?
1 Like
https://www.roblox.com/library/148042198/Terrain-Save-and-Load
for saving and loading while in studio
To load a terrain while in-game, a piece of code is required:
workspace.Terrain:PasteRegion(**theSavedTerrainObject**, workspace.Terrain.MaxExtents.Min, true)
and then clear it once you are done with it
workspace.Terrain:Clear()
3 Likes