I am making a 2D game, but none of the buttons seem to work. Here is my button in the inspector on Unity 2019.3:

And here is the code for PageOne.cs:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class PageOne:MonoBehaviour {
public Rigidbody2D body;
// Start is called before the first frame update
void Start(){ body = GetComponent<Rigidbody2D>(); }
public void Roll(){ body.gravityScale = 1; }
// Update is called once per frame
void Update(){}
}