Like:
1 | game.Lighting.LoadMap: "The Town" |
and how do I delete this map later?
Don't use lighting as a storage, it is out-dated. Use Server Storage instead and simply clone the model into the workspace:
1 | game.ServerStorage [ "MapName" ] :Clone().Position = CFrame.new( 0 , 0 , 0 ); |