Map & MLO Studio
Quick Locations
/command
Tip: In-game, run /coords (with a dev tool) to grab exact vectors, then paste them here.
Spawn & Blip Script
client.lua — teleport command + map blip
gospawn_spawn.lua
Vespucci Garage
-- Vangtech NZ — Spawn / Teleport script
-- Generated: Wed, 09 Sep 2026 06:03:57 GMT
-- https://vangtech.nz
-- Location: Vespucci Garage
local spawn = {
x = -1037.5,
y = -2737.6,
z = 20.16,
heading = 328
}
RegisterCommand('gospawn', function()
local ped = PlayerPedId()
DoScreenFadeOut(500)
Wait(500)
SetEntityCoords(ped, spawn.x, spawn.y, spawn.z, false, false, false, false)
SetEntityHeading(ped, spawn.heading)
Wait(500)
DoScreenFadeIn(500)
end, false)
-- ymap teleport / blip
local blip = AddBlipForCoord(spawn.x, spawn.y, spawn.z)
SetBlipSprite(blip, 52)
SetBlipColour(blip, 5)
SetBlipAsShortRange(blip, true)
BeginTextCommandSetBlipName("STRING")
AddTextComponentSubstringPlayerName("Vespucci Garage")
EndTextCommandSetBlipName(blip)