#how to make Datasave
1 messages · Page 1 of 1 (latest)
use DataStoreService
local dataStoreService = game:GetService("DataStoreService")
You'll also need to create a new data store instance like:
local newDataStore = dataStoreService:GetDataStore("ExampleDataStore")
Then, to access the saved data in that new data store you make, you can use :GetAsync(), and to set use :SetAsync() or :UpdateAsync().
Just look up a youtube video ngl
Use ProfileStore
Should probably still learn the basics of datastore before using this, though