Ir para o conteúdo principal
FiveMX

Comece a construir seu servidor hoje.

Recursos FiveM selecionados, entrega instantânea, mods grátis para começar e guias práticos em um marketplace tranquilo.

Navegar na lojasupport@fivemx.com

Loja

  • Loja
  • Mods FiveM
  • Todos os produtos
  • Mods grátis
  • Melhores scripts & mods
  • Scripts FiveM

Frameworks

  • Scripts QBCore
  • Scripts ESX
  • QBox
  • Standalone

Comunidade

  • Blog
  • Suporte
  • Criadores
  • Afiliados

Jurídico

  • Política de privacidade
  • Termos de serviço
  • Política de reembolso
  • Entrega digital
  • Política de cookies
  • Conformidade LGPD/GDPR
  • DMCA
  • Informações legais
  • Política editorial

Templates de Servidor

  • Template de Servidor QBCore
  • Template de Servidor ESX
  • Template de Servidor NoPixel
  • Packs de Servidor
  • Templates Grátis
  • Alternativa ao Tebex
© 2026 FiveMX. Todos os direitos reservados.·FiveMX não é afiliado à Rockstar Games, Take-Two Interactive ou CFX.re. Todas as marcas são propriedade de seus respectivos donos.
DiscordDocs
  • Entrega digital instantânea
  • Atualizações vitalícias em produtos selecionados
  • Aprovado por donos de servidores
FiveMX
Loja
Servidores CompletosPacotesLançamentos

Yoda Tasks - Task UI System

Yoda Tasks - Task UI System
Free
QBCore
ESX
Standalone

Yoda Tasks - Task UI System

by FiveMX WordPress archive

Trust & Source

Community listed
Download reachable
Source
Code source (github.com)
Destination
github.com
Safety
Pending safety review
Last tested
Jun 16, 2026
Compatibility
QBCore, ESX, Standalone
Dependencies
None listed
Restored from WordPress/imported free-mod archive content during the 2026-06-12 WP migration parity recovery. Source/download link inherited from WP content or historical FiveMX link exports.

Download

Free download (ad supported)

Free downloads are supported by a brief ad page (Linkvertise) to keep this service running.

Servidor de produção?

Explore scripts pagos com entrega instantânea, sinais de suporte e sem etapa de anúncio.

Scripts premiumBundles com desconto

About This Mod

**Yoda Tasks - Modern Task UI System for FiveM**

## Transform Your Job Scripts with a Sleek Task Interface

Give your FiveM job systems a professional, modern interface that players will actually enjoy using. Yoda Tasks is a free, standalone task UI system that makes managing jobs, objectives, and missions more intuitive and visually appealing. Whether you're running delivery jobs, collection tasks, or multi-step missions, this script provides a clean, organized way to display progress and objectives.

Unlike cluttered, text-heavy interfaces that overwhelm players, Yoda Tasks uses a minimal design philosophy. Players see exactly what they need - current task, progress, and next steps - without distracting elements. The smooth animations and responsive design make it feel polished and professional, elevating your server's overall quality.

### What Makes Yoda Tasks Different?

This isn't just another notification system. Yoda Tasks is specifically designed for job-based gameplay, providing persistent task tracking that stays visible while players work. The system supports both simple single-task displays and complex multi-objective missions, adapting to whatever your job scripts require.

The UI is built with customization in mind. Server owners can adjust colors to match their branding, modify positioning to fit their HUD layout, and configure display styles to suit different job types. Everything is controlled through a straightforward config file - no coding expertise required for basic customization.

### Key Features

- **Clean, Modern Interface** - Minimalist design that doesn't clutter the screen or distract from gameplay

- **Fully Customizable Colors** - Adjust gradient colors and borders to match your server theme

- **Standalone Framework** - Works with ESX, QBCore, QBOX, VRP, or any custom framework

- **Simple Setup Process** - Install in minutes with clear documentation

- **Multiple Display Modes** - Choose between simple (title/message) or detailed (title/task/amount/icon) views

- **Progress Tracking** - Visual progress indicators for collection and delivery tasks

- **Smooth Animations** - Polished transitions when tasks update or complete

- **Icon Support** - Display custom icons for different task types

- **Performance Optimized** - Lightweight UI with minimal resource usage (0.00-0.01ms)

- **Responsive Design** - Adapts to different screen resolutions and aspect ratios

- **Easy Integration** - Simple exports for triggering task displays from any script

- **Active Development** - Regular updates from Yoda Things development team

### Perfect For

- Delivery job scripts (package delivery, food delivery, postal service)

- Collection tasks (garbage collection, farming, mining, fishing)

- Multi-step missions (heists, investigations, tutorial sequences)

- Crafting systems (showing required materials and progress)

- Achievement tracking (displaying objectives and completion status)

- Quest systems (RPG-style objective tracking)

- Any job that needs clear, persistent task display

### Compatibility

Yoda Tasks is built as a **standalone** resource, meaning it works independently of specific frameworks. This universal compatibility is one of its biggest strengths:

- ✅ **ESX** - Fully compatible with all ESX versions and job scripts

- ✅ **QBCore** - Works seamlessly with QBCore framework and jobs

- ✅ **QBOX** - Supports QBOX implementations

- ✅ **VRP** - Compatible with VRP-based servers

- ✅ **Custom Frameworks** - Easy to integrate with any custom framework

- ✅ **No Dependencies** - Doesn't require specific libraries or frameworks

### Installation Guide

Step 1: Download the Resource

Click the download link below to get the latest version from GitHub. Extract the ZIP file to access the resource folder.

Step 2: Install to Your Server

Copy the `yoda-tasks` folder to your server's resources directory (usually `server-data/resources/`). Make sure all files are present in the folder.

Step 3: Add to server.cfg

Open your `server.cfg` file and add this line:

```
ensure yoda-tasks
```

Step 4: Configure Settings (Optional)

Open the `config.lua` file to customize colors, positioning, and display options. The default settings work great, but customization options include:

- Gradient color values (primary and secondary colors)

- Border color and thickness

- UI position on screen

- Animation speed and style

- Display mode (simple or detailed)

Step 5: Restart Your Server

Restart your FiveM server to load the new resource. You can verify it loaded by checking the server console for any errors.

Step 6: Integrate with Job Scripts

Use the provided exports to trigger task displays from your existing job scripts. Basic usage example:

```
exports['yoda-tasks']:ShowTask({
title = "Delivery Job",
task = "Deliver package to Vinewood",
amount = "3/10",
icon = "fa-box"
})
```

### Integration Examples

Here's how to integrate Yoda Tasks with common job types:

Delivery Jobs

```
-- Show delivery task
exports['yoda-tasks']:ShowTask({
title = "Package Delivery",
task = "Drop off at marked location",
amount = deliveriesComplete .. "/" .. totalDeliveries,
icon = "fa-truck"
})
```

Collection Tasks

```
-- Show garbage collection progress
exports['yoda-tasks']:ShowTask({
title = "Garbage Collection",
task = "Collect from marked bins",
amount = binsCollected .. "/15",
icon = "fa-trash"
})
```

Simple Message

```
-- Show simple task without progress
exports['yoda-tasks']:ShowTask({
title = "Welcome",
message = "Check your map for the next objective"
})
```

### Common Issues & Solutions

Issue: UI not appearing on screen

**Solution:** Check F8 console for errors. Verify the resource is started (type `ensure yoda-tasks` in server console). Make sure you're using the correct export syntax. Try restarting the resource with `restart yoda-tasks`.

Issue: Colors not changing after config edit

**Solution:** After editing config.lua, you must restart the resource completely. Use `restart yoda-tasks` in the server console. Clear your FiveM cache if changes still don't appear.

Issue: UI position conflicts with other HUD elements

**Solution:** Adjust the position settings in config.lua. You can move the task UI to different corners or sides of the screen to avoid overlapping with other interfaces.

Issue: Icons not displaying

**Solution:** Yoda Tasks uses Font Awesome icons. Make sure you're using valid Font Awesome 5 icon names (e.g., "fa-box", "fa-truck"). Check the Font Awesome documentation for available icons.

### Customization Tips

- **Match Your Server Theme:** Use your server's brand colors in the gradient settings for a cohesive look

- **Icon Library:** Browse Font Awesome for hundreds of free icons to represent different task types

- **Position Testing:** Test different positions with various screen resolutions to ensure visibility

- **Animation Speed:** Adjust animation timing to match your server's overall UI feel

- **Contrast:** Ensure text is readable against your chosen background colors

### FAQ

Q: Does this work with my existing job scripts?

A: Yes! Yoda Tasks integrates with any job script using simple exports. You just need to add the export calls where you want tasks to display.

Q: Can I have multiple tasks showing simultaneously?

A: The current version shows one task at a time (the most recent). For multiple concurrent tasks, you'd need to modify the script or check for updates from Yoda Things.

Q: Is this script still being updated?

A: Yes, Yoda Things actively maintains their [free resources](/free-mods/fivem) on GitHub. Check the repository for the latest updates and new features.

Q: How do I hide/remove the task UI?

A: Use the hide export: `exports['yoda-tasks']:HideTask()` to remove the UI when tasks complete or are canceled.

Q: Does this work on all screen resolutions?

A: Yes, the responsive design adapts to different resolutions. Test on your target resolutions to ensure optimal placement.

Q: Can I use this commercially on my server?

A: Yes, this is a free resource available for use on any FiveM server, including commercial ones. Check the license in the GitHub repository for specific terms.

### Get It Now

Ready to upgrade your job system UI? Download Yoda Tasks and give your players a modern, polished task tracking experience.

[Download Yoda Tasks System](https://github.com/Yoda-Things/yoda-tasks)

### Related Resources

- Explore other Yoda Things free resources - notification systems, clipboards, and more

- Check out free FiveM job scripts that pair perfectly with task UI systems

- Browse our tutorials for guides on integrating UI systems with your scripts

**Support Note:** For issues, features requests, or questions, visit the Yoda Things GitHub repository or join their Discord community. The development team is active and responsive to community feedback.

### Related Premium Job Scripts on FiveMX

- [CodeM JobSelector](/shop/codem-jobselector)
- [[ESX] Bus Job Advanced](/shop/esx-bus-job-advanced)
- [Woodcutter job](/shop/woodcutter-job)
- [[ESX] Advanced Gardener Job](/shop/esx-advanced-gardener-job)

### Need More Job Scripts?

Check out our curated collection of FiveM job scripts on [FiveMX](/fivem-job-scripts) — ready-to-install resources for ESX, QBCore & QBOX with instant download.

---

### Related Articles

- [3 Maps for Builder Job - Free FiveM Job Scripts](/blog/3-maps-for-builder-job)
- [Animals/Pets Job (Free) - Free FiveM Job Scripts](/blog/animals-pets-job)
- [Basic HUD for QBCore - Free FiveM Job Scripts](/blog/basic-hud-for-qbcore)

Explore our [premium FiveM mods](/shop) and [free mods collection](/free-mods/fivem) for ready-to-use resources.

Premium Alternative

Looking for a production-ready version?

Get premium scripts with dedicated support, lifetime updates, and one-click installation.

Browse Premium ScriptsView Bundles

Compatibilidade

Frameworks
QBCore, ESX, Standalone
Modo de Jogo
FiveM

Informações de Download

Total de Downloads
0
Última Atualização
16 de jun. de 2026

Segurança e Origem

Autor Original
FiveMX WordPress archive
Status do Conteúdo
Tested by FiveMX
Último teste pela FiveMX
junho de 2026

Comunidade

Total de Downloads
0

Perguntas frequentes sobre este mod

Respostas rápidas baseadas nas informações publicadas para Yoda Tasks - Task UI System.

Com quais frameworks Yoda Tasks - Task UI System é compatível?
Yoda Tasks - Task UI System é compatível com QBCore, ESX, Standalone. Foi verificado para servidores FiveM.
Como instalo Yoda Tasks - Task UI System no meu servidor FiveM?
Baixe o recurso, extraia para a pasta resources do seu servidor FiveM, adicione o nome do recurso ao server.cfg e reinicie o servidor. Instruções de instalação estão incluídas no download.
Yoda Tasks - Task UI System é gratuito para download?
Sim, Yoda Tasks - Task UI System é completamente gratuito para baixar na FiveMX. Não é necessário criar conta para downloads de mods grátis.
Yoda Tasks - Task UI System é seguro para usar?
Sim, todos os mods grátis na FiveMX são verificados e checados antes de serem listados. Yoda Tasks - Task UI System foi baixado mais de 0 vezes pela comunidade FiveM.

Tem outra pergunta? Verifique a descrição do mod acima para mais detalhes.

Related Tutorials & Guides

Learn more about setting up, configuring, and using this type of resource.

Continue Explorando

Descubra mais recursos para seu servidor FiveM ou GTA 5.

Need a production-ready version?

Free mods are a good starting point. When your server needs stronger support, cleaner installs, and premium systems, move into the commercial hubs below.

Framework hub

Move from free QBCore resources into verified paid systems with support, updates, and cleaner install paths.

Open QBCore hub

Premium catalog

See paid scripts, framework labels, bundles, and install-ready products once the free version no longer covers your server needs.

Open premium shop

Money page

Add police, mechanic, gang, and economy systems around this mod with stronger commercial scripts.

See job scripts
Listado Por
FiveMX WordPress archive

Launch faster

Start from curated bundles

Bundles shorten setup time by grouping the highest-leverage systems into one commercial starting point.

View bundles
Voltar para Mods Grátis
Início
Mods Grátis
ESX vs QBCore vs QBOX: Comparação Técnica de Frameworks 2026

ESX vs QBCore vs QBOX: Comparação Técnica de Frameworks 2026

Escolher um framework é a decisão mais importante ao montar um servidor FiveM. Ele determina quais scripts você pode usar, como seus desenvolvedores escrevem código, o…

FiveM Frameworks Explicados: Guia Completo para ESX, QBCore e QBOX

FiveM Frameworks Explicados: Guia Completo para ESX, QBCore e QBOX

Os frameworks do FiveM formam a espinha dorsal dos servidores de roleplay. Eles não são apenas bibliotecas de código — são sistemas completos que gerenciam identidade do jogador, empregos, inventário, permissões,…

Como Migrar do ESX para o QBCore do Jeito Certo

Como Migrar do ESX para o QBCore do Jeito Certo

Migrar um servidor FiveM de ESX para QBCore em 2028 exige oito etapas ordenadas: congelar a produção e criar um snapshot de reversão, montar uma base QBCore limpa em staging, substituir…

Mods FiveM Grátis
Scripts FiveM Premium
Hub FiveM Completo
Pacotes FiveM
Scripts QBCore
Scripts ESX
Browse QBCore premium scripts
Compare premium FiveM systems
Build your jobs stack

Guia de instalação da FiveMX

Escrito pela equipe editorial do FiveMX com base no artefato CitizenFX atual e em cada framework suportado — não copiado do post original.

QBCore

Instalar Yoda Tasks - Task UI System no QBCore

  1. 1Use o botão de download acima para obter o arquivo do FiveMX.
  2. 2Extraia o arquivo para resources/[qb]/yoda-tasks-task-ui-system no seu servidor. Mantenha o nome da pasta do recurso como está — a maioria dos manifests o referencia diretamente.
  3. 3Se o arquivo contiver um arquivo SQL (procure por *.sql), importe-o para o seu banco de dados FiveM — os servidores de teste do FiveMX usam oxmysql com MariaDB 10.6.
  4. 4Adicione ensure yoda-tasks-task-ui-system ao seu server.cfg após a linha ensure do qb-core.
  5. 5Se o mod incluir um config.lua, abra-o antes da primeira inicialização e combine os nomes dos jobs, itens de inventário e locale com sua própria configuração qb-core — caso contrário, os alvos não funcionarão.
  6. 6Reinicie o servidor e execute ensure yoda-tasks-task-ui-system no console ao vivo para confirmar que ele carrega sem erros vermelhos. Se encontrar um erro de dependência, o mod provavelmente precisa de ou — instale-os primeiro e tente novamente.
ESX Legacy

Instalar Yoda Tasks - Task UI System no ESX Legacy

  1. 1Use o botão de download acima para obter o arquivo do FiveMX.
  2. 2Extraia o arquivo para resources/[esx]/yoda-tasks-task-ui-system no seu servidor. Mantenha o nome da pasta do recurso como está — a maioria dos manifests o referencia diretamente.
  3. 3Se o arquivo contiver um arquivo SQL (procure por *.sql), importe-o para o seu banco de dados FiveM — os servidores de teste do FiveMX usam oxmysql com MariaDB 10.6.
  4. 4Adicione ensure yoda-tasks-task-ui-system ao seu server.cfg após es_extended.
  5. 5Se o mod for para ESX Legacy, verifique se ele ainda usa a chamada legada TriggerEvent("esx:getSharedObject") — algumas versões mais antigas precisam de um patch de uma linha para ESX = exports["es_extended"]:getSharedObject().
  6. 6Reinicie o servidor e execute ensure yoda-tasks-task-ui-system no console ao vivo para confirmar que ele carrega sem erros vermelhos. Se encontrar um erro de dependência, o mod provavelmente precisa de ou — instale-os primeiro e tente novamente.
Standalone

Instalar Yoda Tasks - Task UI System no Standalone

  1. 1Use o botão de download acima para obter o arquivo do FiveMX.
  2. 2Extraia o arquivo para resources/[standalone]/yoda-tasks-task-ui-system no seu servidor. Mantenha o nome da pasta do recurso como está — a maioria dos manifests o referencia diretamente.
  3. 3Adicione ensure yoda-tasks-task-ui-system ao seu server.cfg.
  4. 4Reinicie o servidor e execute ensure yoda-tasks-task-ui-system no console ao vivo para confirmar que ele carrega sem erros vermelhos. Se encontrar um erro de dependência, o mod provavelmente precisa de ox_lib ou ox_inventory — instale-os primeiro e tente novamente.

Mods gratuitos semelhantes

Outros mods gratuitos populares que podem ser úteis para o seu servidor.

Portis Delivery | Phone-Based Courier App | Multi-Phone

Portis Delivery | Phone-Based Courier App | Multi-Phone

105 downloads

Delivery Jobs (5-in-1)

Delivery Jobs (5-in-1)

92 downloads

[ESX/QB] Complete Delivery App & Courier System

[ESX/QB] Complete Delivery App & Courier System

81 downloads

Advanced Job Garage

Advanced Job Garage

69 downloads

Garbage Job | Multiplayer [ESX/QBCore/QBX/Standalone]

Garbage Job | Multiplayer [ESX/QBCore/QBX/Standalone]

65 downloads

FiveM Job Garages

FiveM Job Garages

54 downloads

ox_lib
ox_inventory
ox_lib
ox_inventory

Upgrades pagos que combinam com este mod grátis

O download continua gratuito, mas compare scripts e pacotes de servidor prontos para produção antes de colocar este recurso em um servidor de roleplay ao vivo.

Instant deliveryVerified compatibilitySupport-ready setupBrowse all premium mods
Ver produto: Premium Vehicle HUD
Premium Vehicle HUD FiveM product preview
HUDs429 sales

Premium Vehicle HUD

Premium FiveM vehicle HUD with speed, gear, mileage tracking, and steering wheel controls for ESX and QBCore servers.

429 current salesesx + qbcore

US$ 6,99

Ver produto
Ver produto: FiveM European Streets
FiveM European Streets FiveM product preview
FiveM MLOs340 sales

FiveM European Streets

This mod will make the streets european (German Roads)! Hand-crafted mod, for your server. With the Roads mod, you'll experience an authentic European feel with every step you take. Hand-crafted with precision and attention to detail, this mod is designed to give your server a unique touch

336 legacy sales340 current salesesx + qbcore

US$ 4,49

Ver produto
Ver produto: FiveM AntiCheat 2025 (updated)
FiveM AntiCheat 2025 (updated) FiveM product preview
Admin Tools314 sales5.0

FiveM AntiCheat 2025 (updated)

FiveM Anticheat script/mod | OPTIMIZED and perfect for ESX detects modders and ban them instantly. Many server owners struggle because of cheaters, modders and hackers. There are a couple of hacks and mod menus for FiveM and money hacks for ESX framework. ? Hackers are quite annoying but the

314 legacy sales314 current salesesx + qbcore

US$ 21,99

Ver produto
Ver produto: FiveM Jobs Creator | ESX v4.0
FiveM Jobs Creator | ESX v4.0 FiveM product preview
Job Scripts320 sales

FiveM Jobs Creator | ESX v4.0

The #1 FiveM Jobs Creator Script - that allows server administrators to easily create generic jobs with many customizable interaction points.

320 legacy sales320 current salesesx + qbcore

US$ 22,99

Ver produto