# ShapeClass.client_onChildJointRemoved

Called when a child [Joint](../Game-Script-Environment/Userdata/Joint.md) is removed from the [Interactable](../Game-Script-Environment/Userdata/Interactable.md)'s connection list.

**Kind:** Callback

**Environments:** Game

## Game

**Callback side:** Client

``` { .lua .api-signature }
ShapeClass:client_onChildJointRemoved( joint )
```

[Open the full Game reference](../Game-Script-Environment/Classes/ShapeClass.md#client_onchildjointremoved)

This can happen when a player explicitly disconnects the [Joint](../Game-Script-Environment/Userdata/Joint.md) or when the [Joint](../Game-Script-Environment/Userdata/Joint.md) is destroyed.

**Parameters:**

| Name | Type | Description |
| --- | --- | --- |
| `self` | table | The class instance. |
| `joint` | [Joint](../Game-Script-Environment/Userdata/Joint.md) | The [Joint](../Game-Script-Environment/Userdata/Joint.md) that was removed. |
