cara menonaktifkan tombol dalam persatuan

Button.interactable = false; // Uses Disabled Color And Cant Click It
Button.enabled = false; // Does Not Use Disabled Color And Cant Click It
Button.gameObject.SetActive(false); // Removes It From UI Entirely 
Bloody Boar