disabling a game object ?

Hello

is it possible to “disable” a game object.

basically i have elements that i want “on” or “off” in my scene.

i’m looking into something like:
monster1.enable = false ; would not render it and not allow the physics on it.

Is that possible ?
Patricia.

I believe you are looking for:

monster1.active = false;

THanks, worked great!

Patricia.