Notify

Notify.lua to Drift Script

Check out Questions to see how to change the notify to your own system

-- Drift Mode Turned On Notify
function driftturnedon()
    lib.notify({
        title = "Drift Mode",
		description = "Drift mode is on | Tokyo Drift",
		type = 'success'
    })
end

-- Drift Mode Turned Off Notify
function driftturnedoff()
    lib.notify({
        title = "Drift Mode",
        description = "Drift mode is off | Vehicle is in normal state", 
        type = 'success'
    })
end

-- Do Not Edit --
return {
    driftturnedon = driftturnedon,
    driftturnedoff = driftturnedoff
}

Last updated