Script that changes score when specific UI button is clicked

I have about 5 buttons on this scene & I would like each button to add or subtract a different amount to the overall score when it is clicked. Nothing too complicated I suppose, but I’ve been unable to find any resources available. Any help is appreciated!

You should really learn basic coding…

But, on your button OnClick, reference something like:

public void OnClick_AddPoint()
{
GameObject.Find(“Whatever”).GetComponent().Score++;
}