Answered by
8 years ago Edited 8 years ago
Hey there derfvb123,
No. You cannot save instances in DataStore. The DataStore manual explicitly states that you cannot do so. You can, however, save data about the parts that you want to save. Like so:
01 | local Part = path.To.Part |
02 | local DataStore = game:GetService( "DataStoreService" ):GetDataStore( "PartData" ) |
05 | Position = { Part.CFrame:components() } ; |
06 | Color = Part.BrickColor.Name; |
10 | DataStore:SetAsync( "PartOne" , PartData) |
To render the part again, you would do the following:
01 | local function RenderPart(partData) |
02 | local part = Instance.new( "Part" , game.Workspace) |
04 | part.CFrame = CFrame.new( unpack (partData.Position)) |
05 | part.BrickColor = BrickColor.new(partData.Color) |
10 | local partData = DataStore:GetAsync( "PartOne" ) |
I'll leave the rest to your imagination (and ingenuity.) Have a nice day derfvb123, and best of luck with your project!
Warm regards,
tkcmdr
Sources:
CFrame API Page
BrickColor API Page
DataStoreService API Page
Global namespace/Basic functions