Just wondering for datastore, is there any way to save a model through datastore. No, not a singular part, I mean an entire model:

Do you have to save every single part inside of it or is there a method to save a model. I just need that question answered.
You can’t, but you can save their names which is entirely un-efficient because lets say you got 100k parts then that’ll quickly reach the max datastore memory, but you can save the model’s name then just refer to the specific model in game by using findfirstchild or something.
--Example:
ReplicatedStorage[Data.Model.Name]
--or
local myModel = ReplicatedStorage:FindFirstChild(Data.Model.Name)
if myModel then
print("Model Found")
end
3 Likes