Is it possible to remove data from Data Storage?
Not like, creating a new key or something, but actually removing the data.
The only way to "remove" data from data storage is to either set the value to nil or to remove the line of code that saves it to the data store. Setting the value to nil will cause it to be set to nothing in a sense and removing the line of code that saves it will cause the data to not be saved anymore and you could also remove the loading line so it is essentially a "blank" value. A "blank" value is what I call a data store value when you no longer use it.