It appears that the issue here is that the Update function in the base class (Score) isn’t getting called because it’s hidden by the Update function in the derived class(Coin Collision). Since the Update function in the derived class is empty anyway you should just be able to remove it. Doing that will unhide the base class Update function and it will be called every frame as you expect. The takeaway from this is that when you define a function in a derived class that already exists in the base class you’re basically replacing the base class function. It seems that you’re also defining a Start function in both classes, I expect that the base class start function is also not getting called.
Edit: From the looks of it you only have one coin right now but if you add more coins you are going to need to move the score handling to it’s own script, right now each coin basically has it’s own score instead of there being a single score that each coin increments.