floatGET_CONTROL_UNBOUND_NORMAL(int padIndex, int control);
Property
Value
Native Name
GET_CONTROL_UNBOUND_NORMAL
Hash
0x5B84D09CEC5209C5
Return Type
float
Build
1207
Parameters
padIndex (int), control (int)
Description: ```
Seems to return values between -1 and 1 for controls like gas and steering.
### Parameters
- **`padIndex`** (`int`) — The control system instance to use. See [`ENABLE_ALL_CONTROL_ACTIONS`](#\_0xA5FFE9B05F199DE7).
- **`control`** (`int`) — The [control ID](https://docs.fivem.net/docs/game-references/controls/#controls) to check.
### Usage
**Lua (Direct):**
```lua
local result = GetControlUnboundNormal(padIndex, control)
Lua (Hash):
local result = Citizen.InvokeNative(0x5B84D09CEC5209C5, padIndex, control)