06.05.2025, 06:36
To delete everything from the storage go to Utilities > Reset / clean-up and select "Script and application storage".
Or you can use a script with a wildcard:
Or you can use a script with a wildcard:
Code:
keys = storage.keys('values*')
for _, key in ipairs(keys) do
storage.delete(key)
end