Price
UnknownA script by LynxarA
Price
Unknown
AboutLynTachometer is a script that makes your car configuration easier. It adds a tachometer UI that shows your car’s speed, and how much it takes until the car reaches your specified speeds.
ConfigurationThis script is configurable to an extent:
Config Preview:
--[[
Tahometer v1.0.0
Created by LynxarA
]]
-- Do NOT modify this line or names of the variables:
Config = {}
Config.UseNotify = false -- if you want to use the okokNotify each time you open/close the Tahometer, set this to true
-- Your speed formula:
--[[
Final Speed = (EquationMultiplier * (GTA Speed ^ EquationPower)) + EquationAddition
1) Example (for standard MPH formula):
Final Speed = GTA Speed * 2.236936
So the data must be:
EquationMultiplier = 2.236936
EquationPower = 1
EquationAddition = 0
Total: (2.236936 * (GTA Speed ^ 1)) + 0
2) Example (for standard KMH formula):
Final Speed = GTA Speed * 3.6
So the data must be:
EquationMultiplier = 3.6
EquationPower = 1
EquationAddition = 0
Total: (3.6 * (GTA Speed ^ 1)) + 0
The multiplier was taken from Fivem Native Reference:
https://docs.fivem.net/natives/?_0x9E1E4798
]]
Config.Units = "km/h" -- this is the unit of the speed, you can change it to MPH or whatever you want
Config.FirstMilestone = 100 -- this is the first milestone, when the speed is equal or higher than this, the time will be saved
Config.SecondMilestone = 200 -- this is the second milestone, when the speed is equal or higher than this, the time will be saved
Config.EquationMultiplier = 3.6 -- this is a multiplier of X
Config.EquationPower = 1 -- this is a power of X
Config.EquationAddition = 0 -- this is an addition to X
Preview: Preview (YouTube) (old UI)

Tebex: Tebex Link
| Code is accessible | No, only Config |
| Subscription-based | No |
| Lines (approximately) | ~200 |
| Requirements | Fivem Server |
| Support | Yes |
See what others are saying about this script.
Share your experience and help others.