# Body.createBlock

Create a block on body

**Kind:** Function

**Environments:** Game

## Game

``` { .lua .api-signature }
body:createBlock( uuid, size, position, forceAccept? )
```

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

**Availability:** Server only

**Parameters:**

| Name | Type | Description |
| --- | --- | --- |
| `body` | [Body](../Game-Script-Environment/Userdata/Body.md) | The parent body. |
| `uuid` | [Uuid](../Game-Script-Environment/Userdata/Uuid.md) | The uuid of the shape. |
| `size` | [Vec3](../Game-Script-Environment/Userdata/Vec3.md) | The shape's size. |
| `position` | [Vec3](../Game-Script-Environment/Userdata/Vec3.md) | The shape's local position. |
| `forceAccept` *(optional)* | boolean | Set true to force the body to accept the shape. (Defaults to true) |

**Returns:**

| Type | Description |
| --- | --- |
| [Shape](../Game-Script-Environment/Userdata/Shape.md) | The created block |
