[PAID] [STANDALONE] LynTahometer (A Tachometer Script)

:clipboard: About

LynTachometer 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.

:hammer: Configuration

This script is configurable to an extent:

  • You can specify your multiplier, addition, and power for your custom speed equation
  • You can edit shown speed units
  • You can use okokNotify with this script

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

:camera: Preview: Preview (YouTube) (old UI)

lyntahometer

:dollar: Tebex: Tebex Link

Code is accessible No, only Config
Subscription-based No
Lines (approximately) ~200
Requirements Fivem Server
Support Yes

There is a script that was posted here 2 days ago that is the EXACT same thing, and it’s completely free…why would i pay for this?

If the post is not relevant to you, ignore it. If he wants it, let him sell it :man_facepalming:

  1. The script was posted after mine, it was basically like “oh, you are selling this script, lemme make my own for free, same idea”
  2. The free script doesn’t have custom equations (you can adapt my script to your speed formula)