New module, new free model!
What is this module?
This module is loading maps (but not as fast) but im still finding a way on how to load the maps faster. Look in the Module and the maps folder and you’ll see premade maps!
How do you use it?
Easy pie. Here’s an example explaining what the modules does:
mapLoader.loadMap(“TestMap”, false, game.Workspace.BaseplateMap, false)
- The “TestMap” is the map name you want to load.
- The “false” next to the map name, is if you want to include clouds in your loaded map.
- The “game.Workspace.BaseplateMap” is the map you want to move back to the module.
- The other “false” next to the excluded map, is if you want to load Terrain, if you have a TerrainRegion in your map folder.
mapLoader.terrainTransform(workspace)
- This copies the terrain and pastes it in workspace as an object.
Here’s the script for the map loader if you want to load some premade maps for testing!
local mapLoader = require(game.ServerScriptService.MapLoader)
mapLoader.loadMap("TestMap", false, game.Workspace.BaseplateMap, false)
task.wait(4)
mapLoader.loadMap("BaseplateMap", false, game.Workspace.TestMap, false)
task.wait(4)
mapLoader.loadMap("Island", false, game.Workspace.BaseplateMap, true)
If you don’t have the module, the module is free and no credits is required (only if you want to), here’s the link: Module Link
Is it open source?
Yes! Free to use and no credit as said. Extremely modable!