[Standalone] [Free] Vehicle-Showroom + Shop

Vehicle-Showroom

FEATURES

  • World-idle: 0.00ms | 0.01-0.02ms in render distance
  • Changeable render-distance
  • Configures as many showrooms and vehicles as you want!
  • Direct tebex-link in the preview
  • Current supported languages: English, German
  • Add vehicle descriptions (Different notifies)

INFORMATIONS

Images

Entry

Inside the showroom

Other description notify

Config-File
Config = {
    language = 'en',
    useBuySystem = false, -- do you want to make it possible to buy the vehicles
    useESX = false, 
    locations = {
        {
            vehicleSpawn = vector3(0.0, 0.0, 0.0),
            entry = vector3(-32.85, -1102.21, 26.42),
            renderDistance = 30.0, -- vehicle spawn
            rotDist = 20.0, -- rotation distance (must be smaller than render distance)
            rotationspeed = 200, -- rotation speed for the toggled vehicles -- not added yet
            fadetime = 400,
            blip = {
                sprite = 227,
                color = 37,
                scale = 0.7,
                display = 6, -- https://docs.fivem.net/natives/?_0x9029B2F3DA924928
                text = "Car-Showroom"
            },
            marker = {
                sort = 21,
                color = {r = 225, g = 6, b = 0},
                alpha = 160,
                jump = false,
                rotate = true,
                faceCam = false,
                scale = {x = 1.0, y = 1.0, z = 1.0},
                rotation = {x = 0.0, y = 0.0, z = 0.0} -- if faceCam and rotate = false
            },
            cars = {
                {
                    spawnname = 'adder',
                    coords = vector4(-47.16, -1096.26, 26.42, 118.62), -- x, y, z, heading
                    rotating = false, -- not added yet
                    shop = "https://tebex.io", -- shop link (remove it if you don't need it)
                    color = {
                        primary = {255, 4, 125},
                        secondary = {255, 255, 255},
                    },
                    desc = { -- description
                        enabled = true,
                        sort = 'up', -- up / down
                        label = 'Adder',
                        text = 'A nice car', -- Shouldn't be too long
                        maxSp = 300, -- maxspeed
                        price = 500, -- price !!! YOU CAN'T BUY THE CAR IN THIS SCRIPT !!!!!!
                        buyable = false, -- no wait.... You can buy them now! :)
                    }, 
                    cam = {
                        enabled = true,
                        zoomspeed = 100.0,
                        fov_min = 55.0,
                        fov_max = 25.0,
                        radius = 5.5,
                        minz = 49.0,
                        maxz = 0.0, 
                    }
                },
                {
                    spawnname = 'sanchez',
                    coords = vector4(-48.48, -1102.33, 26.42, 301.65), -- x, y, z, heading
                    rotating = true,
                    --shop = "https://tebex.io", -- shop link (remove it if you don't need it)
                    color = {
                        primary = {255, 255, 255},
                        secondary = {255, 255, 255},
                    },
                    desc = { -- description
                        enabled = true,
                        sort = 'down', -- up / down
                        label = 'Adder',
                        text = 'A nice car', -- Shouldn't be too long
                        maxSp = 300, -- maxspeed
                        price = 500, -- price !!! YOU CAN'T BUY THE CAR IN THIS SCRIPT !!!!!!
                        buyable = true,  -- no wait.... You can buy them now! :)
                    }, 
                    cam = {
                        enabled = true,
                        zoomspeed = 100.0,
                        fov_min = 55.0,
                        fov_max = 25.0,
                        radius = 2.5,
                        minz = 49.0,
                        maxz = 0.0, 
                    }
                },
                {
                    spawnname = 'dominator7',
                    coords = vector4(-40.22, -1099.38, 26.42, 66.84), -- x, y, z, heading
                    rotating = false,
                    --shop = "https://tebex.io", -- shop link (remove it if you don't need it)
                    color = {
                        primary = {255, 255, 255},
                        secondary = {255, 255, 255},
                    },
                    desc = { -- description
                        enabled = true,
                        sort = 'up', -- up / down
                        label = 'Dominator 7',
                        text = 'A nice car', -- Shouldn't be too long
                        maxSp = 300, -- maxspeed
                        price = 500, -- price !!! YOU CAN'T BUY THE CAR IN THIS SCRIPT !!!!!!
                        buyable = false,  -- no wait.... You can buy them now! :)
                    }, 
                    cam = {
                        enabled = true,
                        zoomspeed = 100.0,
                        fov_min = 55.0,
                        fov_max = 25.0,
                        radius = 5.5,
                        minz = 49.0,
                        maxz = 0.0, 
                    }
                },
            }
        }
    },
}

REFRENCE

COMMENT (Please read it)

This script cost me just 3-4 hours of effective work + research. I don’t understand why some people don’t release things in the forum without only seeing the money behind it.

DOWNLOAD (Github)

8 Likes

Very NICE Amazing they are People doing stuff like that for free instead for taking money…

5 Likes

Discord link in topic

Nice. Amazing work. Preview picture is from a guy with a big sip, isnt it?

3 Likes

Could you possibly add a function to allow people to add their own money system to it.

Yeah, I’ll push it in a couple of minutes to github, but you need to code the buy-process on the server-side by yourself. Because I don’t know the vehicle propertys in the owned_vehicles table of the datatbase, of every server.

Update

New Features

  • It’s now possible to buy the vehicles.
  • You can edit everything in the config file: spawnpoint, price, is vehicle buyable …

!IMPORTANT!

You need to add your own code to insert the vehicle in the database, I added a small esx example

DOWNLOAD (Github the download link on top still works)

1 Like