forked from NaorNC/nc-rental
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathconfig.lua
More file actions
16 lines (14 loc) · 701 Bytes
/
Copy pathconfig.lua
File metadata and controls
16 lines (14 loc) · 701 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
Config = {}
Config.locationthingy = vector3(109.2985, -1087.9554, 28.3033)
Config.carspawnlocation = vector4(110.9995, -1081.4813, 28.6714, 339.0954)
Config.vehicleList = {
{ name = "Bison", model = "bison", price = 300 },
{ name = "Futo", model = "Futo", price = 250 },
{ name = "Coach", model = "coach", price = 400 },
{ name = "Tour bus", model = "tourbus", price = 600 },
{ name = "Taco", model = "taco", price = 420 },
{ name = "Limo", model = "stretch", price = 1250 },
{ name = "Hearse", model = "romero", price = 1300 },
{ name = "Clown Car", model = "speedo2", price = 2850 },
{ name = "Festival Bus", model = "pbus2", price = 4500 },
}