> ## Documentation Index
> Fetch the complete documentation index at: https://docs.jaksam-scripts.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Bypass start vehicle check

> Bypass the vehicle start conditions using a state bag.

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

## Example

```lua theme={null}
-- This command will make the player bypass the current vehicle start conditions
RegisterCommand("startbypass", function()
    local plyPed = PlayerPedId()
    local plyVeh = GetVehiclePedIsIn(plyPed)

    Entity(plyVeh).state.canAlwaysStart = true
end)
```

<Note>
  The bypass applies when you enter the vehicle **after** it's been enabled.
</Note>


## Related topics

- [Client](/vehicles-keys/client/index.md)
- [Admin bypass lock](/doors-creator/admin-bypass-lock.md)
- [Buyable Vehicles](/jobs-creator/server/buyable-vehicles/index.md)
- [Self give vehicle plate](/vehicles-keys/client/self-give-vehicle-plate.md)
- [Get if player is owner of vehicle plate](/jobs-creator/server/buyable-vehicles/get-if-player-is-owner-of-vehicle-plate.md)
