πŸ“™
Simonfas FiveM
  • ⚠️About Simonfas Fivem
    • πŸ›’Shop
    • πŸ”—Discord
  • πŸ“‘EXTRA
    • ❓Questions
    • 🌐Locales
      • πŸ‡ΊπŸ‡²OX LIB Locales
      • πŸ‡ΊπŸ‡ΈNormal Locales
  • Create A Server
    • Getting Started
      • Download Artifacts
      • Setup TxAdmin
  • πŸ–₯️SCRIPTS
    • 🚢Spawn NPC Copy
      • πŸ“½οΈRelease video
      • πŸ“½οΈOX LIB UPDATE
      • 🟒Green Screen
      • πŸ’ƒAnimation Presets
    • πŸšΆβ€β™€οΈSpawn NPC Copy Sample Version
    • 🏎️Drift Script
      • Notify
    • πŸ§₯Refreshskin
    • 🧰Mechanic
    • πŸ›—Elevator
      • Notify
    • πŸš“Job Garage
      • Notify
    • πŸ“±Stausi Tablet
  • πŸ—’οΈFivem Server Files Rework
    • πŸ‡©πŸ‡°[DK] Devo Network Rework
  • 🀩Coming soon
    • πŸ—ƒοΈEvidence
      • Local Databsase
    • πŸ”Restaurant Job
    • 🌳Lumberjack Job
Powered by GitBook
On this page
  1. SCRIPTS
  2. Drift Script

Notify

Notify.lua to Drift Script

PreviousDrift ScriptNextRefreshskin

Last updated 10 months ago

Check out 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
}
πŸ–₯️
🏎️
Questions