# SB_GROUP_EJECT

Ejects specific resident from group.

## Command usage

```csharp
llMessageLinked(LINK_SET, SB_GROUP_EJECT, string str, key id);
```

## API parameters

`llMessageLinked` function accepts `str` and `id` parameters. Their meaning for `SB_GROUP_EJECT` is explained below:

| Variable | Required | Description |
|----------|----------|-------------|
| str      | yes      | \--         |
| id       | yes      | resident UUID |

## Important

If you are using a custom role (other than "Everyone") you need additional abilities for your bot. [Read this](/doc/inviting-and-ejecting-from-custom-role-xLBQ50f6Xi) for details.

## Example

```csharp
llMessageLinked(LINK_SET, SB_GROUP_EJECT, "", "b522928f-2146-4426-993d-2e0806aea23c");
```