# IVanishManager > Interface for vanishing and unvanishing players. `gg.lode.bookshelfapi.api.manager.IVanishManager` --- ## Signature ```java public interface IVanishManager ``` --- ## Methods | Method | Return Type | Description | |--------|-------------|-------------| | `vanish(Player player)` | `void` | Hides the player from all other players. | | `unvanish(Player player)` | `void` | Makes the player visible again. | | `isVanished(Player player)` | `boolean` | Returns whether the player is currently vanished. | ### Parameters | Parameter | Type | Description | |-----------|------|-------------| | `player` | `Player` | The target player. | --- ## Usage ```java IVanishManager vanish = BookshelfAPI.getApi().getVanishManager(); vanish.vanish(player); if (vanish.isVanished(player)) { player.sendMessage("You are currently vanished."); } vanish.unvanish(player); ``` --- ## Related Pages - [[IBookshelfAPI]]