Games like My Movie and Library of Alethea support a search system for players creations.
I thought it was impossible to search on a datastore, but it did. How does it work?
Games like My Movie and Library of Alethea support a search system for players creations.
I thought it was impossible to search on a datastore, but it did. How does it work?
hmm… if you mean like a search system, you could probably request all of the data from the server (if you’re using tables to save the data). it has been done in games like one note forever:
if you’re curious about how you fetch the data; you can simply fire a remote event and return the data.
I’m curious about how to import multiple data at once.
I remember being able to import only one data at a time with the keys on the datastore
When player creates a content, the game stores the metadata of it (like titles, descriptions,etc) in an array(table) then saves it, and when the player searches it looks for those names inside the datastore and retrieving it and firing the information from server to client and handling your gui stuff on client with the given information.
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.