# Interactable.setSteeringJointSettings

Sets the settings of a [Joint](../Game-Script-Environment/Userdata/Joint.md) connected to a steering [Interactable](../Game-Script-Environment/Userdata/Interactable.md).

**Kind:** Function

**Environments:** Game

## Game

``` { .lua .api-signature }
interactable:setSteeringJointSettings(
    joint,
    leftAngleSpeed,
    rightAngleSpeed,
    leftAngleLimit,
    rightAngleLimit,
    unlocked
)
```

[Open the full Game reference](../Game-Script-Environment/Userdata/Interactable.md#setsteeringjointsettings)

**Availability:** Client only

**Parameters:**

| Name | Type | Description |
| --- | --- | --- |
| `interactable` | [Interactable](../Game-Script-Environment/Userdata/Interactable.md) | The interactable. |
| `joint` | [Joint](../Game-Script-Environment/Userdata/Joint.md) | The joint. |
| `leftAngleSpeed` | number | The left angle speed. |
| `rightAngleSpeed` | number | The right angle speed. |
| `leftAngleLimit` | number | The left angle limit. |
| `rightAngleLimit` | number | The right angle limit. |
| `unlocked` | boolean | Whether the joint is unlocked. |
