Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do you save buildings and then load them?

Asked by 7 years ago

I'm making a tycoon-like game where the user gets to pick what room they want to place down. I have a grid system and when they click on a GUI button, the room appears on their mouse and they can place it wherever. I've tried using data persistence but I understand that that's depreciated and I can't figure out how to use data stores to store buildings instead of data.

I've seen somewhere else that a good idea would be to locate the user's purchases and then save the name of the purchases, put it in a table, convert them to strings and then use a data store. I'm not really sure how to do this and when you are loading in the buildings, how does the game know where to place them or do I need to store all of the details of the purchases, including size and colour, etc...

1 answer

Log in to vote
0
Answered by 7 years ago
Edited 7 years ago

You could put it all into 1 model object and then store it in ReplicatedStorage or in ServerStorage.

Once you have done that simply do:

01buildings = {"Put all of your buildings that you have saved in here"}
02 
03local building = game.ReplicatedStorage[modelNames[Index]]:Clone()
04 
05-- Index = Whatever one you want to access
06--[==[
07 
08e.g.
09 
10Indexes = {"Hello","me"}
11 
12print(Indexes[1])
13 
14-- Prints "Hello"
15 
View all 32 lines...

good thing is: if you're always going to be using the same buildings you can do this as ServerStorage/ReplicatedStorage is the same on every game, only issue is you might need to update every server once you add a new one and you can't save user stuff like this for all servers.

Ad

Answer this question