> For the complete documentation index, see [llms.txt](https://documentation.jaksam-scripts.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://documentation.jaksam-scripts.com/vehicles-keys/client/bypass-start-vehicle-check.md).

# Bypass start vehicle check

You can bypass the start vehicle check by setting the state bag `canAlwaysStart to true`

## Example

<pre class="language-lua"><code class="lang-lua"><strong>-- This command will make the player bypass the current vehicle start conditions
</strong><strong>RegisterCommand("startbypass", function()
</strong>    local plyPed = PlayerPedId()
    local plyVeh = GetVehiclePedIsIn(plyPed)
    
    Entity(plyVeh).state.canAlwaysStart = true
end)
</code></pre>

Note: the bypass will apply when you enter the vehicle, **after** that the bypass is enabled
