Link for pastebin It's 200 Lines long But it's cause there is two saving functions But maybe it could be https or api error i'm not sure
Hi, what's up.
So immediately I recognized an error, and it most likely is the cause to all of this. On line #1, you put > local Datastore = game:GetService("DataStoreService")
This get's the service DataStoreService, but not the DataStore itself. :SetAsync() and :GetAsync() are only available to DataStores, and not the service. In order to fix this, you'd need to think of a DataStore name, and change the first line a bit.
local Datastore = game:GetService("DataStoreService"):GetDataStore("DataStoreNameHere") -- the datastore name could be absolutely anything
Hope this helps!