| Property | Value |
|---|---|
| Native Name | CEIL |
| Hash | 0x11E019C8F43ACC8A |
| Return Type | int |
| Build | 1207 |
| Parameters | value (float) |
Description: ``` I'm guessing this rounds a float value up to the next whole number, and FLOOR rounds it down
### Usage
**Lua (Direct):**
```lua
local result = Ceil(value)
Lua (Hash):
local result = Citizen.InvokeNative(0x11E019C8F43ACC8A, value)