> For the complete documentation index, see [llms.txt](https://fivemdocs.simonfas.dk/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://fivemdocs.simonfas.dk/scripts/drift-script/notify.md).

# Notify

Notify.lua to Drift Script

Check out [Questions](/extra/questions.md) to see how to change the notify to your own system

```lua
-- 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
}
```
