I didn’t really understand it very well, are you trying to reset the spinner selection?
If so, there is a dedicated block called Spinner.Selection that you can set to “”.
Don’t change the Spinner’s Elements property after saving. To reset it, only change the Selection property:
set Spinner1.Selection to ""
If that clears the list in your app, then another block is probably resetting Spinner1.Elements at the same time. Check the blocks that run after the save operation and make sure you’re not setting Elements to an empty list or empty text.
Another option is to set the selection back to the first item:
set Spinner1.SelectionIndex to 1
This keeps all Spinner items and simply resets the selected value. Please share a screenshot of your blocks if the problem continues.