|
| 12 Apr 2014 07:51 PM |
How would I remove an async from a DatStore?
I'm thinking it's on the lines of:
local DataStore = game:GetService("DataStoreService"):GetDataStore("LoginService")
DatStore:GetAsync("Bob"):remove() |
|
|
| Report Abuse |
|
|
Azarth
|
  |
| Joined: 17 Aug 2012 |
| Total Posts: 2760 |
|
|
| 12 Apr 2014 08:01 PM |
| You can't, just save to a new place. |
|
|
| Report Abuse |
|
|
|
| 12 Apr 2014 08:46 PM |
If you know the key, you can just set it to an empty table. Not sure if setting to nil is allowed, but it's worth a shot.
DataStore:SetAsync("Bob", nil) |
|
|
| Report Abuse |
|
|