Show and Hide GuiTexture c# code

How to hide and show guiTexture? and the gui txture must be responsive.

void OnMouseDown (){
    // guiTexture show
    guiTexture.enable;
}

Use guiTexture.enabled = true; to enable it and guiTexture.enabled = false; to disable it.

2 Likes

woah I never knew I could do that XD