[Image blocked: My own character standing on a hill in the Grand Senora Desert at dusk, with nothing around but trees and bare ground]

Last time I finished with a status check of the development environment and my own resources. Today, continuing from there, I focused on verifying route68house — which I'd listed under "what to do next time" — and moved forward on the MLO (map interior) side of things along with improvements to my development environment.

Investigating route68house

I started by looking inside the route68house resource, which I'd installed a while back and then left alone. Opening it up, I found several things that bothered me.

  • It used an old __resource.lua (the legacy manifest format)
  • It wasn't registered in server.cfg, so it had never once been started
  • The map itself consisted of nothing but rbh.ymap

On top of that, no README or license information was included, so I could tell it was a fairly old distribution. The reality was: "it's sitting in the folder, but it had actually never run."

Updating the Manifest

First, getting it to a state where the current FiveM environment can load it. I rewrote the legacy __resource.lua into the current fxmanifest.lua.

On top of that, I registered the resource in server.cfg.

cfg

Then I ran the load from the txAdmin console.

And then,

was displayed, and I could confirm that the resource itself starts correctly. At least I'd gotten it to a "can be loaded" state.

[Image blocked: The txAdmin console after running refresh and ensure route68house, showing "Started resource route68house"]

Adding a Teleport Feature for Development

To check an MLO, you first have to get to its coordinates — otherwise there's nothing to talk about. Walking or driving there every time is inefficient, so to raise my development efficiency I built a new resource of my own, simple_teleport.

[Image blocked: The vMenu MAIN MENU opened in game, listing items like Online Players, Player Related Options, and Vehicle Related Options]

The setup looks like this.

  • Move to any coordinates with /tp x y z
  • Teleport with your vehicle (the car you're in comes along)
  • Error messages on invalid input
  • Comes with a README

I registered this in server.cfg as well and ran the load.

[Image blocked: The txAdmin console after running ensure simple_teleport, showing "Started resource simple_teleport"]

I confirmed it loaded correctly, and I was able to check in game that /tp works and shows its help message. As I go on placing MLOs, NPCs, shops and so on, having this way of getting around versus not having it makes a completely different difference to how efficiently the work goes. It's a plain feature, but I think it's one that pays off.

[Image blocked: The help shown in the in-game chat when typing /tp: "/tp [x] [y] [z] teleports you to the specified coordinates"]

Verifying route68house

With the preparation done, finally the main event. I used the newly built /tp command to fly to the coordinates I'd found during the investigation.

...But no building appeared at the destination — just terrain stretching out.

[Image blocked: The hillside at the teleport destination. No building is rendered — only my own character collapsed on the slope, grass, and bare rock]

The resource itself starts correctly (the "Started resource" line does show up), so it doesn't seem to be a startup problem. The possible causes I can think of are,

  • Missing data in the distribution itself
  • Absence of dependency props (the objects that make up the building)

somewhere around there. That also lines up with the investigation finding that it's a fairly old distribution with no README. Chasing this further felt like it would melt away my time, so for now I put it on hold.

What I Learned Today

Today wasn't so much a day of adding a new game element — it was a day where I got to experience the whole basic flow of FiveM development: investigate the resource → fix it → load it → verify it works.

The MLO itself didn't render in the end, but the very process of narrowing down the cause from a situation of "it's running, yet nothing shows" feels like it'll be nourishment the next time I run into trouble. On top of that, now that I have a teleport feature for development, the efficiency of placing MLOs, NPCs, and shops from here on should go up a lot.

Today's Progress

  • Investigated the structure of route68house
  • Migrated from __resource.lua to fxmanifest.lua
  • Registered it in server.cfg
  • Confirmed the resource starts
  • Newly created simple_teleport
  • Verified the /tp command works
  • Checked whether the MLO renders, and narrowed down the cause

Next time, rather than fixating on this old MLO, I want to install other MLOs and resources that are properly maintained for FiveM, and gradually build the server up.


This article is a record of the GTA6 FEED operator actually building a FiveM server on their own PC. The technical information is written after confirming the environment and each tool's offering as of June 2026, but the specifications and behavior vary by environment and may change going forward. FiveM and GTA are trademarks of their respective rights holders (Cfx.re / Rockstar Games), and this site is not affiliated with those companies.