Is there any way to remove all keys from a specific DATASTORE scope at once?
Keys from a table you mean? The shortest way I can think is this:
for key in pairs(tableName) then
tableName[key] = nil
end
Actually you can do this:
tableName = { }
Sorry, I’m talking about Datastores.