🗺️FiveM/Redm Mapping
Last updated
This guide explains step-by-step how to install a FiveM mapping (custom map) after purchase — from the Cfx Portal to the final ensure line in your server.cfg.
Go to https://portal.cfx.re/.
Log in using the Cfx account you used to make the purchase.
Click on your profile icon (top right) and open “My Assets”.
Find the mapping you purchased in the list.
Click Download to get the .zip file.
Once the .zip file is downloaded, extract it (right-click → “Extract here”).
You should see a folder that looks something like this:
mymapping/
├─ stream/
├─ fxmanifest.lua
└─ ...Make sure the folder contains a fxmanifest.lua file.
💡 Without this file, FiveM won’t recognize the resource.
Open your server directory (usually named resources/).
Drag and drop the mapping folder inside, for example:
⚠️ Avoid spaces and special characters in the folder name.
server.cfgOpen your server.cfg file.
Add this line at the bottom (or in your resource section):
Save the file.
Restart your FiveM server via your control panel or console.
Join your server and check that the mapping has loaded correctly.
✅ If everything is working, you’ll see the new mapping directly in-game!
If the mapping doesn’t load:
Double-check the folder name.
Make sure it’s placed inside a folder that is ensured in your server.cfg.
Check your console logs for any resource errors.
To stay organized, you can structure your resources like this:
And in your server.cfg:
Last updated
resources/[maps]/mymappingensure mymappingresources/[maps]
resources/[scripts]
resources/[vehicles]resources/
├─ [maps]/
│ ├─ mymapping/
│ │ ├─ fxmanifest.lua
│ │ └─ stream/
│ └─ anothermap/
└─ [scripts]/
└─ myscript/ensure [maps]
ensure [scripts]