Hi there, so this is my first time on the forums, I'm currently creating a spreadsheet that needs to reset the values of specific cells to 0 on a daily basis.
I have created a module with the code below that is currently assigned to a button so I can manually reset
Sub Reset()
Sheets("Luis").Range("B10,K10,N10,B16,E16,H16,K16,N16,Q16,T16").Value = 0
End Sub
And I now need a code to activate that daily. I have searched around and found the below, which I have put into the workbook VBA and tried to test but it does not appear to be working.

Private Sub Workbook_Open()
     Application.OnTime TimeValue("13:43:00"), "Reset"
End Sub
Would somebody be able to assist?