Free Resourcesfilo_bolt
Export
Full reference for the Start export.
Start
Starts the bolt minigame for a specific vehicle wheel. The call blocks until the player either rotates all bolts or cancels.
local success = exports.filo_bolt:Start(data)Parameters
data is a table with the following fields:
Prop
Type
Return value
| Value | Meaning |
|---|---|
true | All bolts were successfully rotated |
false | The player cancelled before finishing |
Valid wheel bones
| Bone name | Position |
|---|---|
wheel_lf | Front-left |
wheel_rf | Front-right |
wheel_lr | Rear-left |
wheel_rr | Rear-right |
Start uses Citizen.Await internally. Call it inside a CreateThread — do not call it at the top level of a script or inside an event handler without a thread wrapper.
Input bindings (while active)
| Input | Action |
|---|---|
| Left Mouse Button | Rotate the hovered bolt |
| Escape / Backspace | Cancel and return false (if canCancel is true) |