Theres a game called life together roleplay, it has a app in its mobile tool based on snapchat. You can capture photos of the map with this mobile and send to others as a photo.
How can this be achieved?
Im one mobile i cant send images hut go to life together roleplay open the phone tool you can send images of yourself or things to people
My immediate thought would be to work out what objects and players are visible in the frame, extract the properties of each, and reconstruct the scene later on. I’m assuming the recipient can view the photo on the phone interface, in which case WallyDragon is correct. You’ll have to use a ViewportFrame.
Obviously you’d need to seriously optimise this system to not save unnecessary data, like
Identifying what never changes between scenes, like the ground or buildings, and leaving them out of the photo data.
Only saving objects that differ, like player-made stuff and the players themselves.
Overall what you’re pitching is a pretty complex system. But good luck