Please note, this is a STATIC archive of website www.tutorialspoint.com from 11 May 2019, cach3.com does not collect or store any user information, there is no "phishing" involved.
Tutorialspoint

Execute Lua Online

lua

print("Hello World!")
print(12345)

https://pt.stackoverflow.com/q/38705/101

lua

a = {{a=1, b=2}, {a=2, b=3}, {a=1, b=2}, {a=3, b=2}, {a=1, b=2}}
 
for i = #a, 2, -1 do
	for j = i - 1, 1, -1 do
		if (a[j].a == a[i].a and a[j].b == a[i].b) then
			table.remove(a, i)
			break
		end
	end
end
 
-- demonstração do resultado:
for i, j in pairs(a) do
	print(i .. ". a=" .. j.a .. ", b=" .. j.b)
end

--https://pt.stackoverflow.com/q/38705/101

Gargen

lua

local cfg = {}
-- define garage types with their associated vehicles
-- (vehicle list: https://wiki.fivem.net/wiki/Vehicles)

-- each garage type is an associated list of veh_name/veh_definition 
-- they need a _config property to define the blip and the vehicle type for the garage (each vtype allow one vehicle to be spawned at a time, the default vtype is "default")
-- this is used to let the player spawn a boat AND a car at the same time for example, and only despawn it in the correct garage
-- _config: vtype, blipid, blipcolor, permissions (optional, only users with the permission will have access to the shop)

cfg.rent_factor = 0.1 -- 10% of the original price if a rent
cfg.sell_factor = 0.75 -- sell for 75% of the original price

cfg.garage_types = {
  ["Fisher's Boat"] = {
	_config = {
	  vtype="boat",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=427,
	    blipcolor=28,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"fisher.vehicle"}
	},
    ["suntrap"] = {"Fisher's boat",0, "Your favorite boat!"}
  },
  
  ["High End"]  = {  -- 150k price cap
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["ninef2"] = {"9F Cabrio",130000, ""},
    ["alpha"] = {"Alpha",150000, ""},
    ["banshee"] = {"Banshee",105000, ""},
    ["banshee2"] = {"Banshee 900R",120000, ""},
    ["carbonizzare"] = {"Carbonizzare",110000, ""},
	["chantom"] = {"Chantom Semi",110000, ""},
    ["cognoscenti2"] = {"Cognoscenti(Armored)",80000, ""},
    ["cogcabrio"] = {"Cognoscenti Cabrio",77000, ""},
    ["comet2"] = {"Porsche Cayman",132694, ""},
    ["coquette"] = {"Coquette",138000, ""},
    ["coquette3"] = {"Coquette BlackFin",130000, ""},
    ["tampa2"] = {"Drift Tampa",95000, ""},
    ["feltzer2"] = {"Feltzer",130000, ""},
    ["furoregt"] = {"Furore GT",108000, ""},
	["gtr"] = {"GTR Nismo",184950, ""},
    ["jester"] = {"Jester",140000, ""},
    ["jester2"] = {"Jester (Racecar)",150000, ""},
    ["f620"] = {"Lexus RC350", 75900, ""},
    ["pigalle"] = {"Pigalle",90000, ""},
    ["surano"] = {"Surano",95000, ""}
  },

  ["Mid Range"] = { -- 75k price cap
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["baller"] = {"Baller",40000, ""},
    ["bestiagts"] = {"Bestia GTS",60000, ""},
    ["blista"] = {"Golf MK3",42000, ""},
    ["buffalo"] = {"Buffalo",35000, ""},
    ["buffalo2"] = {"Buffalo S",45000, ""},
    ["dominator"] = {"Ford Mustang",78000, ""},
    ["fusilade"] = {"Fusilade",36000, ""},
    ["gburrito"] = {"Gang Burrito",65000, ""},
    ["gauntlet"] = {"Gauntlet",35000, ""},
    ["granger"] = {"Grabger",40000, ""},
    ["huntley"] = {"Huntley",45000, ""},
	["rs3"] = {"Audi RS3",45000, ""},
	["kuruma"] = {"Lancer Evo",59950, ""},
    ["nightshade"] = {"Nightshade",72000, ""},
    ["rapidgt"] = {"Rapid GT",40000, ""},
    ["rapidgt2"] = {"Rapid GT Convertible",50000, ""},
    ["sabregt"] = {"Sabre Turbo",72000, ""},
    ["schafter2"] = {"Schafter",35000, ""},
    ["sentinel2"] = {"Sentinel XS", 35000, ""},
	["elegy"] = {"Skyline GTR",68200, ""},
    ["superd"] = {"Super Diamond",40000, ""},
    ["tampa"] = {"Tampa",72000, ""},
    ["verlierer2"] = {"Verkierer",69500,""},
    ["vigero"] = {"Vigero",72000, ""},
    ["virgo"] = {"Virgo",65000, ""},
    ["xls"] = {"XLS",45000, ""},
	["stinger18"] = {"Kia Stinger 2018",90000, ""},
	["yukonxl"] = {"GMC Yukon",60000, ""},
  },

  ["Exotic Cars"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=5,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	},
    ["adder"] = {"Adder",1000000, ""},
	["m4gts"] = {"BMW M4",78200, ""},
	["2017chiron"] = {"Bugatti Chiron",15860000, "15,86 MIO"},
	["rmodlp750"] = {"Lambo Aventador",12450000, "12,45 MIO"},
	["16challenger"] = {"Dodge Challenger",89995, ""},
	["amggtr"] = {"Mercedes-Benz GTR",165410, ""},
	["windsor"] = {"Bentley",125000, ""},
	["bentaygast"] = {"Bentley Bentayga StarTech",125000, ""},
	["benzsl63"] = {"Mercedes-Benz SL63",171995, ""},
	["exemplar"] = {"Mercedes-Benz CLA 45", 127500, ""},
	["cczl"] = {"Camaro ZL1",83000, ""},
	["fenyr"] = {"Fenyr",25850000, "25,85 MIO"},
	["gt17"] = {"Ford GT",177000, ""},
	["rmodlp770"] = {"Lambo LP770",4750000, "4,75 MIO"},
	--["rsvr16"] = {"Rangerover",45650, ""},
	["rmodpagani"] = {"Pagani",892000, ""},
	["v250"] = {"Mercedes-Benz V-Class", 125500, ""},
	["zentenario"] = {"Lambo Centenario",4450000, "4,45 MIO"},
    ["r8ppi"] = {"Audi R8",180000, ""},
	["ninef"] = {"9f",130000, ""},
	["arv10"] = {"Audi R8V10",180000, ""},
	["jackal"] = {"Audi RS7", 127800, ""},
	["rs6"] = {"Audi RS6",112000, ""},
    ["sentinel"] = {"Audi S5", 142750, ""},
	["rocoto"] = {"Audi Q7",105300, ""},
    ["bullet"] = {"Bullet",155000, ""},
	["oracle2"] = {"BMW M760i",136300, ""},
	["elegy2"] = {"Nissan Skyline",22000, ""},
	["felon"] = {"Mercedes C63 AMG", 131761, ""},
    ["cheetah"] = {"Cheetah",200000, ""},
    ["entityxf"] = {"Entity XF",250000, ""},
    ["fmj"] = {"FMJ",1750000, ""},
    ["infernus"] = {"Infernus",220000, ""},
    ["lynx"] = {"Lynx",173000, ""},
    ["massacro"] = {"Massacro",175000, ""},
    ["massacro2"] = {"Massacro (Racecar)",185000, ""},
    ["osiris"] = {"Osiris",950000, ""},
    ["reaper"] = {"Reaper",1595000, ""},
    ["le7b"] = {"RE-7B",2075000, ""},
    ["sheava"] = {"ETR1",199500, ""},
    ["schafter3"] = {"Schafter V12",700000, ""},
    ["sultanrs"] = {"Sultan RS",180000, ""},
    ["t20"] = {"Mclaren P1",1120000,""},
    ["tropos"] = {"Tropos",180000, ""},
    ["turismor"] = {"Ferrari Laferrari",1300000, ""},
    ["tyrus"] = {"Tyrus",550000, ""},
    ["vacca"] = {"Vacca",340000, ""},
    ["voltic"] = {"Voltic",150000, ""},
    ["prototipo"] = {"X80 Proto",12700000, ""},
    ["zentorno"] = {"Zentorno",925000,""}
  },

  ["sportsclassics"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=5,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["casco"] = {"Casco",680000, ""},
	["c10custom"] = {"C10 Custom",500000, ""},
    ["coquette2"] = {"Coquette Classic",665000, ""},
    ["jb700"] = {"JB 700",450000, ""},
    ["pigalle"] = {"Pigalle",90000, ""},
	["firebird"] = {"Pontiac Firebird 1970",350000, ""},
    ["stinger"] = {"Stinger",550000, ""},
    ["stingergt"] = {"Stinger GT",575000, ""},
    ["feltzer3"] = {"Stirling",330000, ""},
    ["ztype"] = {"Z-Type",950000,""}
  },


  ["Starter Vehicles"] = {  -- 15k price cap
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["asea"] = {"VW Polo",10000, ""},
    ["asterope"] = {"Asterope",10000, ""},
    ["blista"] = {"Blista", 9000, ""},
    ["brioso"] = {"Brioso R/A", 7500, ""},
    ["dilettante"] = {"Dilettante", 8000, ""},
    ["glendale"] = {"Glendale",8000, ""},
	["camper"] = {"Camper",17500, ""},
	["journey"] = {"Journey",8000, ""},
	["rmodsupra"] = {"Toyota Supra",27000, ""},
	["gresley"] = {"Jeep Grand Cherokee",50900, ""},
	["camry55"] = {"Toyota Camry",29850, ""},
	["supra2"] = {"Toyota Supra 2",27200, ""},
	["ySbrImpS11"] = {"Subaru Impreza",29980, ""},
	["fq2"] = {"Nissan Qashqai",54000, ""},
	["rx7tunable"] = {"Toyota Rx7",32186, ""},
	["rx7veilside"] = {"Toyota Rx7 Veilside",32186, ""},
    ["ingot"] = {"Ingot",9000, ""},
    ["issi2"] = {"Issi", 7000, ""},
    ["intruder"] = {"Intruder",12000, ""},
    ["panto"] = {"Smart", 22450, ""},
    ["penumbra"] = {"Penumbra", 10000, ""},
    ["picador"] = {"Picador",12000, ""},
    ["prairie"] = {"Prairie", 12000, ""},
    ["premier"] = {"Premier",10000, ""},
    ["primo"] = {"Primo",9000, ""},
    ["primo2"] = {"Primo Custom",9500, ""},
    ["regina"] = {"Regina",8000, ""},
    ["rhapsody"] = {"Rhapsody", 5000, ""},
    ["rumpo"] = {"Rumpo",13000, ""},
    ["stanier"] = {"Stanier",10000, ""},
    ["stratum"] = {"VW Passat",40170, ""},
    ["surge"] = {"Surge",9000, ""},
    ["warrener"] = {"Warrener",7000, ""},
    ["washington"] = {"Washington",15000, ""},
    ["windsor"] = {"Bentley",45000, ""}
  },

  ["Off Road"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["brawler"] = {"Brawler",60000, ""},
	["dubsta"] = {"Mercedes G65",275723, ""},
    ["dubsta3"] = {"Mercedes G65 6x6",275723, ""},
	["rebel"] = {"Ford Raptor",35000, ""},
    ["rebel2"] = {"Rebel",15000, ""},
    ["sandking"] = {"Sandking",40000, ""},
	["sandkinghd"] = {"Sandking Monster Truck",550000, ""},
    ["trophytruck"] = {"The Liberator",75000, ""},
	["patriot"] = {"Hummer",25750, ""},
	["monster"] = {"The Liberator Monster",350000, ""},
    ["bifta"] = {"Bifta",10000, ""}, -- atvs start here
    ["blazer"] = {"Blazer",1200, ""},
    ["dune"] = {"Dune Buggy",8000, ""}
  },

  ["Low End"]  = {  -- 30k price cap
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["bison"] = {"Bison",30000, ""},
    ["blade"] = {"Blade",16000, ""},
    ["bobcatxl"] = {"Bobcat XL",23000, ""},
    ["buccaneer"] = {"Buccaneer",29000, ""},
    ["cavalcade"] = {"Cavalcade",30000, ""},
    ["Chino"] = {"Chino",18000, ""},
    ["cognoscenti"] = {"Cognoscenti",25000, ""},
    ["dukes"] = {"Dukes",20000, ""},
    ["faction"] = {"Faction",23000, ""},
    ["felon2"] = {"Felon GT", 23000, ""},
    ["fugitive"] = {"Fugitive",18000, ""},
    ["hotknife"] = {"Hotknife",23000, ""},
    ["landstalker"] = {"Landstalker",30000, ""},
    ["minivan"] = {"Minivan",30000, ""},
    ["omnis"] = {"Omnis",18000, ""},
    ["oracle"] = {"Oracle", 20000, ""},
    ["paradise"] = {"Paradise",17000, ""},
    ["radi"] = {"Radius",30000, ""},
    ["seminole"] = {"Seminole",30000, ""},
    ["stretch"] = {"Stretch",30000, ""},
    ["sultan"] = {"BMW M3",47890, ""},
    ["surfer"] = {"Surfer",20000, ""},
    ["tailgater"] = {"Tailgater",17000, ""},
    ["windsor2"] = {"Windsor Drop",23000, ""},
    ["youga"] = {"Youga",16000, ""},
    ["zion"] = {"VW Golf", 18000, ""},
    ["zion2"] = {"Zion Cabrio", 20000, ""}
  },


  ["Motorcycles"] = {
	_config = {
	  vtype="bike",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=226,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
	["f4rr"] = {"Agusta F4 RR",35000, ""},
    ["AKUMA"] = {"Akuma",9000, ""},
    ["bagger"] = {"Bagger",7000, ""},
    ["bati"] = {"Bati 801",10000, ""},
    ["bati2"] = {"Bati 801RR",10000, ""},
    ["bf400"] = {"BF400",6000, ""},
	["lectro"] = {"BMW R75 Bobber",10000, ""},
    ["carbonrs"] = {"Carbon RS",11000, ""},
    ["cliffhanger"] = {"Cliffhanger",13000, ""},
	["f131"] = {"Confederate F131 Hellcat",45000, ""},
    ["double"] = {"Double T",9000, ""},
    ["enduro"] = {"Enduro",6000, ""},
    ["faggio2"] = {"Faggio",1000, ""},
    ["gargoyle"] = {"Gargoyle",10000, ""},
    ["hakuchou"] = {"Hakuchou",20000, ""},
	["daemon"] = {"Harley Knucklehead",20000, ""},
    ["hexer"] = {"Hexer",15000, ""},
    ["innovation"] = {"Innovation",20000, ""},
    ["nemesis"] = {"Nemesis",12000, ""},
    ["pcj"] = {"PCJ-600",7000, ""},
    ["ruffian"] = {"Ruffian",7000, ""},
    ["sanchez"] = {"Sanchez",3000, ""},
    ["sovereign"] = {"Sovereign",1000, ""}, -- looking for replacement
    ["thrust"] = {"Thrust",12000, ""},
    ["vader"] = {"Vader",7000, ""},
    ["vindicator"] = {"Vindicator",12000,""}
  },
  
  ["Biker"] = {
	_config = {
	  vtype="bike",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=226,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"biker.vehicle"}
	},
	["f4rr"] = {"Agusta F4 RR",35000, ""},
    ["AKUMA"] = {"Akuma",9000, ""},
    ["bagger"] = {"Bagger",7000, ""},
    ["bati"] = {"Bati 801",10000, ""},
    ["bati2"] = {"Bati 801RR",10000, ""},
    ["bf400"] = {"BF400",6000, ""},
	["lectro"] = {"BMW R75 Bobber",10000, ""},
    ["carbonrs"] = {"Carbon RS",11000, ""},
    ["cliffhanger"] = {"Cliffhanger",13000, ""},
	["f131"] = {"Confederate F131 Hellcat",45000, ""},
    ["double"] = {"Double T",9000, ""},
    ["enduro"] = {"Enduro",6000, ""},
    ["faggio2"] = {"Faggio",1000, ""},
    ["gargoyle"] = {"Gargoyle",10000, ""},
    ["hakuchou"] = {"Hakuchou",20000, ""},
	["daemon"] = {"Harley Knucklehead",20000, ""},
    ["hexer"] = {"Hexer",15000, ""},
    ["innovation"] = {"Innovation",20000, ""},
    ["nemesis"] = {"Nemesis",12000, ""},
    ["pcj"] = {"PCJ-600",7000, ""},
	["nightblade"] = {"Nightblade",7000, ""},
    ["ruffian"] = {"Ruffian",7000, ""},
    ["sanchez"] = {"Sanchez",3000, ""},
    ["sovereign"] = {"Sovereign",1000, ""}, -- looking for replacement
    ["thrust"] = {"Thrust",12000, ""},
    ["vader"] = {"Vader",7000, ""},
    ["vindicator"] = {"Vindicator",12000,""}
  },
 ----------   
  
  ["House Garage"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = false,
	    sell = false,
	    rent = false,
	    store = true
	  },
	  blip={
        id=357,
	    blipcolor=69,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
	["f4rr"] = {"Agusta F4 RR",35000, ""},
    ["AKUMA"] = {"Akuma",9000, ""},
    ["bagger"] = {"Bagger",7000, ""},
    ["bati"] = {"Bati 801",10000, ""},
    ["bati2"] = {"Bati 801RR",10000, ""},
    ["bf400"] = {"BF400",7000, ""},
	["lectro"] = {"BMW R75 Bobber",10000, ""},
    ["carbonrs"] = {"Carbon RS",11000, ""},
    ["cliffhanger"] = {"Cliffhanger",13000, ""},
	["f131"] = {"Confederate F131 Hellcat",45000, ""},
    ["double"] = {"Double T",9000, ""},
    ["enduro"] = {"Enduro",7000, ""},
    ["faggio2"] = {"Faggio",2500, ""},
    ["gargoyle"] = {"Gargoyle",10000, ""},
    ["hakuchou"] = {"Hakuchou",20000, ""},
	["daemon"] = {"Harley Knucklehead",20000, ""},
    ["hexer"] = {"Hexer",15000, ""},
    ["innovation"] = {"Innovation",20000, ""},
    ["nemesis"] = {"Nemesis",12000, ""},
    ["pcj"] = {"PCJ-600",7000, ""},
    ["ruffian"] = {"Ruffian",7000, ""},
    ["sanchez"] = {"Sanchez",8000, ""},
    ["sovereign"] = {"Sovereign",66000, ""}, -- looking for replacement
    ["thrust"] = {"Thrust",12000, ""},
    ["vader"] = {"Vader",7000, ""},
    ["vindicator"] = {"Vindicator",12000,""},
	["bison"] = {"Bison",30000, ""},
    ["blade"] = {"Blade",16000, ""},
    ["bobcatxl"] = {"Bobcat XL",23000, ""},
    ["buccaneer"] = {"Buccaneer",29000, ""},
    ["cavalcade"] = {"Cavalcade",30000, ""},
    ["Chino"] = {"Chino",18000, ""},
    ["cognoscenti"] = {"Cognoscenti",25000, ""},
    ["dukes"] = {"Dukes",20000, ""},
    ["faction"] = {"Faction",23000, ""},
    ["felon2"] = {"Felon GT", 23000, ""},
    ["fugitive"] = {"Fugitive",18000, ""},
    ["hotknife"] = {"Hotknife",23000, ""},
    ["landstalker"] = {"Landstalker",30000, ""},
    ["minivan"] = {"Minivan",30000, ""},
    ["omnis"] = {"Omnis",18000, ""},
    ["oracle"] = {"Oracle", 20000, ""},
    ["paradise"] = {"Paradise",17000, ""},
    ["radi"] = {"Radius",30000, ""},
    ["seminole"] = {"Seminole",30000, ""},
    ["stretch"] = {"Stretch",30000, ""},
    ["sultan"] = {"BMW M3",47890, ""},
    ["surfer"] = {"Surfer",20000, ""},
    ["tailgater"] = {"Tailgater",17000, ""},
    ["windsor2"] = {"Windsor Drop",23000, ""},
    ["youga"] = {"Youga",16000, ""},
    ["zion"] = {"VW Golf", 18000, ""},
    ["zion2"] = {"Zion Cabrio", 20000, ""},
	["brawler"] = {"Brawler",60000, ""},
	["dubsta"] = {"Mercedes G65",275723, ""},
    ["dubsta3"] = {"Mercedes G65 6x6",275723, ""},
    ["rebel2"] = {"Rebel",15000, ""},
	["rebel"] = {"Ford Raptor",35000, ""},
    ["sandking"] = {"Sandking",40000, ""},
	["sandkinghd"] = {"Sandking Monster Truck",550000, ""},
    ["trophytruck"] = {"The Liberator",75000, ""},
	["patriot"] = {"Hummer",25750, ""},
	["monster"] = {"The Liberator Monster",350000, ""},
    ["bifta"] = {"Bifta",10000, ""}, -- atvs start here
    ["blazer"] = {"Blazer",7500, ""},
    ["dune"] = {"Dune Buggy",8000, ""},
	["asea"] = {"VW Polo",10000, ""},
    ["asterope"] = {"Asterope",10000, ""},
    ["blista"] = {"Blista", 8000, ""},
    ["brioso"] = {"Brioso R/A", 7050, ""},
    ["dilettante"] = {"Dilettante", 8000, ""},
    ["glendale"] = {"Glendale",8000, ""},
	["rmodsupra"] = {"Toyota Supra",27000, ""},
	["gresley"] = {"Jeep Grand Cherokee",50900, ""},
	["camry55"] = {"Toyota Camry",29850, ""},
	["supra2"] = {"Toyota Supra 2",27200, ""},
	["ySbrImpS11"] = {"Subaru Impreza",29980, ""},
	["fq2"] = {"Nissan Qashqai",54000, ""},
    ["journey"] = {"Journey",5000, ""},
	["rx7tunable"] = {"Toyota Rx7",32186, ""},
	["rx7veilside"] = {"Toyota Rx7 Veilside",32186, ""},
    ["ingot"] = {"Ingot",9000, ""},
    ["issi2"] = {"Issi", 7000, ""},
    ["intruder"] = {"Intruder",12000, ""},
    ["panto"] = {"Smart", 22450, ""},
    ["penumbra"] = {"Penumbra", 10000, ""},
    ["picador"] = {"Picador",12000, ""},
    ["prairie"] = {"Prairie", 12000, ""},
    ["premier"] = {"Premier",10000, ""},
    ["primo"] = {"Primo",9000, ""},
    ["primo2"] = {"Primo Custom",9500, ""},
    ["regina"] = {"Regina",8000, ""},
    ["rhapsody"] = {"Rhapsody", 8000, ""},
    ["rumpo"] = {"Rumpo",13000, ""},
    ["stanier"] = {"Stanier",10000, ""},
    ["stratum"] = {"Stratum",7000, ""},
    ["surge"] = {"Surge",9000, ""},
    ["warrener"] = {"Warrener",7000, ""},
    ["washington"] = {"Washington",15000, ""},
    ["windsor"] = {"Bentley",125000, ""},
	["bentaygast"] = {"Bentley Bentayga StarTech",125000, ""},
	["casco"] = {"Casco",680000, ""},
	["c10custom"] = {"C10 Custom",500000, ""},
    ["coquette2"] = {"Coquette Classic",665000, ""},
    ["jb700"] = {"JB 700",450000, ""},
    ["pigalle"] = {"Pigalle",90000, ""},
	["firebird"] = {"Pontiac Firebird 1970",350000, ""},
    ["stinger"] = {"Stinger",550000, ""},
    ["stingergt"] = {"Stinger GT",575000, ""},
    ["feltzer3"] = {"Stirling",330000, ""},
    ["ztype"] = {"Z-Type",950000,""},
	["rs6"] = {"Audi RS6",112000, ""},
    ["sentinel"] = {"Audi S5", 142750, ""},
    ["baller"] = {"Baller",40000, ""},
    ["bestiagts"] = {"Bestia GTS",60000, ""},
    ["blista"] = {"Blista Compact",42000, ""},
    ["buffalo"] = {"Buffalo",35000, ""},
    ["buffalo2"] = {"Buffalo S",45000, ""},
    ["dominator"] = {"Ford Mustang",78000, ""},
    ["exemplar"] = {"Mercedes-Benz CLA 45", 50000, ""},
    ["fusilade"] = {"Fusilade",36000, ""},
    ["gburrito"] = {"Gang Burrito",65000, ""},
    ["gauntlet"] = {"Gauntlet",35000, ""},
    ["granger"] = {"Grabger",40000, ""},
    ["huntley"] = {"Huntley",45000, ""},
	["kuruma"] = {"Lancer Evo",59950, ""},
    ["nightshade"] = {"Nightshade",72000, ""},
    ["rapidgt"] = {"Rapid GT",40000, ""},
    ["rapidgt2"] = {"Rapid GT Convertible",50000, ""},
    ["sabregt"] = {"Sabre Turbo",72000, ""},
    ["schafter2"] = {"Schafter",35000, ""},
    ["sentinel2"] = {"Sentinel XS", 35000, ""},
	["elegy"] = {"Skyline GTR",68200, ""},
    ["superd"] = {"Super Diamond",40000, ""},
    ["tampa"] = {"Tampa",72000, ""},
	["mvisiongt"] = {"mvisiongt",0, ""},
    ["verlierer2"] = {"Verlierer",69500,""},
    ["vigero"] = {"Vigero",72000, ""},
    ["virgo"] = {"Virgo",65000, ""},
    ["xls"] = {"XLS",45000, ""},
	["ninef2"] = {"9F Cabrio",130000, ""},
    ["alpha"] = {"Alpha",150000, ""},
    ["banshee"] = {"Banshee",105000, ""},
    ["banshee2"] = {"Banshee 900R",120000, ""},
    ["carbonizzare"] = {"Carbonizzare",110000, ""},
	["chantom"] = {"Chantom Semi",110000, ""},
    ["cognoscenti2"] = {"Cognoscenti(Armored)",80000, ""},
    ["cogcabrio"] = {"Cognoscenti Cabrio",77000, ""},
    ["comet2"] = {"Porsche Cayman",132694, ""},
    ["coquette"] = {"Coquette",138000, ""},
    ["coquette3"] = {"Coquette BlackFin",130000, ""},
    ["tampa2"] = {"Drift Tampa",95000, ""},
    ["feltzer2"] = {"Feltzer",130000, ""},
    ["furoregt"] = {"Furore GT",108000, ""},
	["gtr"] = {"GTR Nismo",184950, ""},
    ["jester"] = {"Jester",140000, ""},
    ["jester2"] = {"Jester (Racecar)",150000, ""},
    ["f620"] = {"Lexus RC350", 75900, ""},
    ["pigalle"] = {"Pigalle",90000, ""},
    ["surano"] = {"Surano",95000, ""},
	["adder"] = {"Adder",1000000, ""},
	["m4gts"] = {"BMW M4",78200, ""},
	["2017chiron"] = {"Bugatti Chiron",15860000, "15,86 MIO"},
	["rmodlp750"] = {"Lambo Aventador",12450000, "12,45 MIO"},
	["16challenger"] = {"Dodge Challenger",89995, ""},
	["amggtr"] = {"Mercedes-Benz GTR",165410, ""},
	["windsor"] = {"Bentley",125000, ""},
	["bentaygast"] = {"Bentley Bentayga StarTech",125000, ""},
	["benzsl63"] = {"Mercedes-Benz SL63",171995, ""},
	["exemplar"] = {"Mercedes-Benz CLA 45", 127500, ""},
	["cczl"] = {"Camaro ZL1",83000, ""},
	["fenyr"] = {"Fenyr",25850000, "25,85 MIO"},
	["gt17"] = {"Ford GT",177000, ""},
	["rmodlp770"] = {"Lambo LP770",4750000, "4,75 MIO"},
	--["rsvr16"] = {"Rangerover",45650, ""},
	["rmodpagani"] = {"Pagani",892000, ""},
	["v250"] = {"Mercedes-Benz V-Class", 125500, ""},
	["zentenario"] = {"Lambo Centenario",4450000, "4,45 MIO"},
    ["r8ppi"] = {"Audi R8",180000, ""},
	["ninef"] = {"9f",130000, ""},
	["arv10"] = {"Audi R8V10",180000, ""},
	["jackal"] = {"Audi RS7", 127800, ""},
	["rs6"] = {"Audi RS6",112000, ""},
    ["sentinel"] = {"Audi S5", 142750, ""},
	["rocoto"] = {"Audi Q7",105300, ""},
    ["bullet"] = {"Bullet",155000, ""},
	["oracle2"] = {"BMW M760i",136300, ""},
	["elegy2"] = {"Nissan Skyline",22000, ""},
	["felon"] = {"Mercedes C63 AMG", 131761, ""},
    ["cheetah"] = {"Cheetah",200000, ""},
    ["entityxf"] = {"Entity XF",250000, ""},
    ["fmj"] = {"FMJ",1750000, ""},
    ["infernus"] = {"Infernus",220000, ""},
    ["lynx"] = {"Lynx",173000, ""},
    ["massacro"] = {"Massacro",175000, ""},
    ["massacro2"] = {"Massacro (Racecar)",185000, ""},
    ["osiris"] = {"Osiris",950000, ""},
    ["reaper"] = {"Reaper",1595000, ""},
    ["le7b"] = {"RE-7B",2075000, ""},
    ["sheava"] = {"ETR1",199500, ""},
    ["schafter3"] = {"Schafter V12",700000, ""},
    ["sultanrs"] = {"Sultan RS",180000, ""},
    ["t20"] = {"Mclaren P1",1120000,""},
    ["tropos"] = {"Tropos",180000, ""},
    ["turismor"] = {"Ferrari Laferrari",1300000, ""},
    ["tyrus"] = {"Tyrus",550000, ""},
    ["vacca"] = {"Vacca",340000, ""},
    ["voltic"] = {"Voltic",150000, ""},
    ["prototipo"] = {"X80 Proto",12700000, ""},
    ["zentorno"] = {"Zentorno",925000,""},
	
	
	
	
	
	
	
	["2fiftygt"] = {"2fiftygt",0, ""},
	["22bbublu"] = {"22bbublu",0, ""},
	["300gsl"] = {"300gsl",0, ""},
	["911ublu"] = {"911ublu",0, ""},
	["amv12"] = {"amv12",0, ""},
	["cadicts"] = {"cadicts",0, ""},
	["caymanub"] = {"caymanub",0, ""},
	["celicassi"] = {"celicassi",0, ""},
	["celicassi2"] = {"celicassi2",0, ""},
	["charublu"] = {"charublu",0, ""},
	["cobra"] = {"cobra",0, ""},
	["cygnet11"] = {"cygnet11",0, ""},
	["db700"] = {"db700",0, ""},
	["f50ub"] = {"f50",0, ""},
	["f360"] = {"f360",0, ""},
	["focusublu"] = {"focus",0, ""},
	["furaiub"] = {"furaiub",0, ""},
	["g37cs"] = {"g37cs",0, ""},
	["gallardo"] = {"gallardo",0, ""},
	["genublu"] = {"genublu",0, ""},
	["gtbf"] = {"gtbf",0, ""},
	["gtrublu"] = {"gtrublu",0, ""},
	["laferublu"] = {"laferublu",0, ""},
	["lamven"] = {"lamven",0, ""},
	["lev8"] = {"lev8",0, ""},
	["lh610"] = {"lh610",0, ""},
	["mcublu"] = {"mcublu",0, ""},
	["miniub"] = {"miniub",0, ""},
	["miura"] = {"miura",0, ""},
	["musty5"] = {"musty5",0, ""},
	["mx5"] = {"mx5",0, ""},
	["mx5a"] = {"mx5a",0, ""},
	["p107"] = {"p107",0, ""},
	["p550a"] = {"p550a",0, ""},
	["p944"] = {"p944",0, ""},
	["p959"] = {"p959",0, ""},
	["panamera"] = {"panamera",0, ""},
	["rczublu"] = {"rczublu",0, ""},
	["renmeg"] = {"renmeg",0, ""},
	["rx8"] = {"rx8",0, ""},
	["slrublu"] = {"slrublu",0, ""},
	["slsublu"] = {"slsublu",0, ""},
	["slsublue"] = {"slsublue",0, ""},
	["sti05"] = {"sti05",0, ""},
	["tesla11"] = {"tesla11",0, ""},
	["vc7"] = {"vc7",0, ""},
	["vip99"] = {"vip99",0, ""},
	["volksci11"] = {"volksci11",0, ""},
	["z4i"] = {"z4i",0, ""},
	["zr1c3"] = {"zr1c3",0, ""},
	["350z"] = {"350z",0, ""},
	["350z2"] = {"350z2",0, ""},
	["750li"] = {"750li",0, ""},
	["750li2"] = {"750li2",0, ""},
	["2017chiron"] = {"2017chiron",0, ""},
	["a45"] = {"a45",0, ""},
	["asterion"] = {"asterion",0, ""},
	["BMWe90"] = {"BMWe90",0, ""},
	["cla45sb"] = {"cla45sb",0, ""},
	["e63w213"] = {"e63w213",0, ""},
	["e400w213"] = {"e400w213",0, ""},
	["ferrari812"] = {"ferrari812",0, ""},
	["ftipo"] = {"ftipo",0, ""},
	["gl63"] = {"gl63",0, ""},
	["gmt400"] = {"gmt400",0, ""},
	["hh1"] = {"hh1",0, ""},
	["integra"] = {"integra",0, ""},
	["lp770"] = {"lp770",0, ""},
	["lp770r"] = {"lp770r",0, ""},
	["lumma750"] = {"lumma750",0, ""},
	["optima"] = {"optima",0, ""},
	["rrd17"] = {"rrd17",0, ""},
	["s63w"] = {"s63w",0, ""},
	["s63w2"] = {"s63w2",0, ""},
	["s500w222"] = {"s500w222",0, ""},
	["s600w220"] = {"s600w220",0, ""},
	["silver94"] = {"silver94",0, ""},
	["trailblazer"] = {"trailblazer",0, ""},
	["twingo"] = {"twingo",0, ""},
	["vfox"] = {"vfox",0, ""},
	["vgmk2gti"] = {"vgmk2gti",0, ""},
	["vwmk6"] = {"vwmk6",0, ""},
	["w222wald"] = {"w222wald",0, ""},
	["x222"] = {"x222",0, ""},
	["2016rs7"] = {"2016rs7",0, ""},
	
	
	
	
	
	
	
	["aprt"] = {"aprt",0, ""},
	["bimota"] = {"bimota",0, ""},
	["bmwr11"] = {"bmwr11",0, ""},
	["bmwrr"] = {"bmwrr",0, ""},
	["bmws"] = {"bmws",0, ""},
	["bmws1"] = {"bmws1",0, ""},
	["bmwsr"] = {"bmwsr",0, ""},
	["bmwsrn"] = {"bmwsrn",0, ""},
	["d99"] = {"d99",0, ""},
	["ddc"] = {"ddc",0, ""},
	["ddrr"] = {"ddrr",0, ""},
	["dgp15"] = {"dgp15",0, ""},
	["dgp215"] = {"dgp215",0, ""},
	["dhpm"] = {"dhpm",0, ""},
	["diavel"] = {"diavel",0, ""},
	["gsxr"] = {"gsxr",0, ""},
	["hcb18"] = {"hcb18",0, ""},
	["hcb1000"] = {"hcb1000",0, ""},
	["hcbr"] = {"hcbr",0, ""},
	["hdfb"] = {"hdfb",0, ""},
	["hdkn"] = {"hdkn",0, ""},
	["hdss"] = {"hdss",0, ""},
	["hf150"] = {"hf150",0, ""},
	["hfc250"] = {"hfc250",0, ""},
	["hlcr"] = {"hlcr",0, ""},
	["hmarc"] = {"hmarc",0, ""},
	["honcb"] = {"honcb",0, ""},
	["honcbf"] = {"honcbf",0, ""},
	["honcbr"] = {"honcbr",0, ""},
	["hor14"] = {"hor14",0, ""},
	["hor600"] = {"hor600",0, ""},
	["hrc213"] = {"hrc213",0, ""},
	["hrcp213"] = {"hrcp213",0, ""},
	["hsmr"] = {"hsmr",0, ""},
	["hsmx"] = {"hsmx",0, ""},
	["hxre"] = {"hxre",0, ""},
	["kaneda"] = {"kaneda",0, ""},
	["kaneda2"] = {"kaneda2",0, ""},
	["ke400"] = {"ke400",0, ""},
	["kgpz"] = {"kgpz",0, ""},
	["knh2"] = {"knh2",0, ""},
	["knh22"] = {"knh22",0, ""},
	["knzx"] = {"knzx",0, ""},
	["ktmpit"] = {"ktmpit",0, ""},
	["ktmrc"] = {"ktmrc",0, ""},
	["ktmrc8"] = {"ktmrc8",0, ""},
	["ktmtrr"] = {"ktmtrr",0, ""},
	["kx450f"] = {"kx450f",0, ""},
	["kz750"] = {"kz750",0, ""},
	["kza1000"] = {"kza1000",0, ""},
	["minib"] = {"minib",0, ""},
	["mvab"] = {"mvab",0, ""},
	["mvaf"] = {"mvaf",0, ""},
	["p51"] = {"p51",0, ""},
	["polbati"] = {"polbati",0, ""},
	["r3"] = {"r3",0, ""},
	["r6"] = {"r6",0, ""},
	["rsv4"] = {"rsv4",0, ""},
	["sban"] = {"sban",0, ""},
	["sgsx13"] = {"sgsx13",0, ""},
	["sgsxr"] = {"sgsxr",0, ""},
	["spcj"] = {"spcj",0, ""},
	["speedb"] = {"speedb",0, ""},
	["srmz"] = {"srmz",0, ""},
	["srmz2"] = {"srmz2",0, ""},
	["ss750"] = {"ss750",0, ""},
	["sxf450"] = {"sxf450",0, ""},
	["tmrs"] = {"tmrs",0, ""},
	["vindi"] = {"vindi",0, ""},
	["xj6"] = {"xj6",0, ""},
	["yfz6"] = {"yfz6",0, ""},
	["yfz8"] = {"yfz8",0, ""},
	["yfz68"] = {"yfz68",0, ""},
	["ym1"] = {"ym1",0, ""},
	["yml1"] = {"yml1",0, ""},
	["ymt10"] = {"ymt10",0, ""},
	["yr1"] = {"yr1",0, ""},
	["yrd1"] = {"yrd1",0, ""},
	["yss"] = {"yss",0, ""},
	["ytmax"] = {"ytmax",0, ""},
	["yxj6"] = {"yxj6",0, ""},
	["yxt"] = {"yxt",0, ""},
	["yzf"] = {"yzf",0, ""},
	["zx10"] = {"zx10",0, ""},
	["a8lfsi"] = {"a8lfsi",0, ""},
	["srt2018"] = {"a8lfsi",0, ""},
	
	
	
	
	["whitehawk"] = {"Marine One",0, ""},
	["sspres"] = {"Secret Service SUV",0, ""},
	["onebeast"] = {"President Limo",0, ""},
	["pd5"] = {"ADMIN SUV",0, ""},
  },
  
  ["Polizei"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=56,
	    blipcolor=38,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"police.vehicle"}
	},
    ["police"] = {"Mercedes Sprinter 2",0, "police"},
    ["police2"] = {"VW Arteon",0, "police"},
    ["police3"] = {"Police Ford Explorer",0, "police"},
    ["police4"] = {"Police Ford Taurus",0, "police"},
	["cla45pol"] = {"Mercedes CLA 45",0, "police"},
	["mk6pol"] = {"VW MK6",0, "police"},
	["police100"] = {"police100",0, "police"},
    ["policet"] = {"Mercedes Sprinter",0, "police"},
	["pbus"] = {"Prison Bus",0, "police"},
    ["sheriff2"] = {"Sheriff SUV",0, "police"},
    ["sheriff"] = {"Autobahn Mercedes",0, "police"},
	["polamggtr"] = {"Mercedes-Benz GTR",0, "police"},
	["polgs350"] = {"Lexus GS350",0, "police"},
	["polaventa"] = {"Lambo Aventador",0, "police"},
	["polchiron"] = {"Bugatti Chiron",0, "police"},
	["mclarenpd"] = {"Mclaren",0, "police"},
	["pol718"] = {"Porsche Cayman",0, "police"},
	["ghispo2"] = {"Maserati",0, "police"},
	["2015polstang"] = {"Ford Mustang",0, "police"},
	["crown1"] = {"Ford Crown Sheriff",0, "police"},
	["crown2"] = {"Ford Crown Sheriff 2",0, "police"},
	["crown3"] = {"Ford Crown Sheriff blau",0, "police"},
	["crown4"] = {"Ford Crown Highway",0, "police"},
	["crown5"] = {"Ford Crown Sheriff Großes Blaulicht",0, "police"},
	["crown6"] = {"Ford Crown Grau Sheriff",0, "police"},
	["crown7"] = {"Ford Crown Weiß Sheriff",0, "police"},
	["crown8"] = {"Ford Crown LSPD",0, "police"},
	["crown9"] = {"Ford Crown Slicktop LSPD",0, "police"},
	["crown10"] = {"Ford Crown sheriff 3",0, "police"},
	["crown11"] = {"Ford Crown  Paleto Police",0, "police"},
	["policegt350r"] = {"Ford Mustang GTR",0, "police"},
	["rmodpolice"] = {"Nissan GTR",0, "police"},
	["db11scpd"] = {"Aston Martin",0, "police"},
    ["riot"] = {"SWAT",0, "police"},
	["fbi"] = {"2015 Dodge Charger Slicktop Unmarked",0, "police"},
	["fbi2"] = {"Dodge Durango Unmarked",0, "police"},
	["hwaycar2"] = {"State Trooper",0, "police"},
	["hwaycar3"] = {"Trooper SUV",0, "police"},
	["hwaycar5"] = {"HighWay Patrol Ford Crown",0, "police"},
	["hwaycar6"] = {"HWAY Ford Explorer",0, "police"},
	["hwaycar7"] = {"HighWay Patrol BMW Bike",0, "police"},
	["hwaycar8"] = {"HWAY Dodge",0, "police"},
	["hwaycar9"] = {"HighWAY Patrol Ford Explorer",0, "police"},
	["hwaycar10"] = {"Highway Patrol weiß Ford Explorer altes Model",0, "police"},
	["hwaycar11"] = {"HighWay Patrol Ford F350 Super Duty",0, "police"},
	["hwaycar12"] = {"HighWay Patrol Chevrolet Tahoe 2015",0, "police"},
	["hwaycar13"] = {"HighWay Patrol Dodge charger 2015",0, "police"},
	["hwaycar14"] = {"HighWay Patrol Dodge Charger 2015  Slickstop",0, "police"},
	["hwaycar15"] = {"HighWay Patrol Ford Explorer",0, "police"},
	["hwaycar16"] = {"HIghWay Patrol Ford Explorer weiß  Slicktop",0, "police"},
	["hwaycar1"] = {"HighWay Patrol  Ford Crown weiß  großes Blaulich",0, "police"},
    ["polf430"] = {"Police Ferarri",0, "police"},
	["policeb"] = {"Police Bike",0, "police"},
	["noosecougar4"] = {"noosecougar4",0, "police"},
	["cougar4"] = {"cougar4",0, "police"},
	["viper"] = {"Dodge Viper Unmarked Slicktop",0, "police"},
	["viper2"] = {"Viper2",0, "police"},
	["lspd1"] = {"lspd1",0, "police"},
	["lspd2"] = {"lspd2",0, "police"},
	["lspd3"] = {"lspd3",0, "police"},
	["lspd4"] = {"lspd4",0, "police"},
	["lspd5"] = {"lspd5",0, "police"},
	["lspd6"] = {"lspd6",0, "police"},
	["lspd7"] = {"lspd7",0, "police"},
	["lspd8"] = {"lspd8",0, "police"},
	["lspd9"] = {"lspd9",0, "police"},
	["lspd10"] = {"lspd10",0, "police"},
	["lspd11"] = {"lspd11",0, "police"},
	["lspd12"] = {"lspd12",0, "police"},
	["srt8police"] = {"srt8police",0, "police"},

  },
  ["Cadet"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=56,
	    blipcolor=38,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"Cadet.vehicle"}
	},
    ["police7"] = {"police",0, "police"},
  },
  ["Bounty"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=56,
	    blipcolor=38,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"Bounty.vehicle"}
	},
    ["fbi"] = {"Unmarked",0, "police"},
  },
  ["emergency"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=3,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"emergency.vehicle"}
	},
    ["Ambulance"] = {"Ambulance",0, "emergency"},
	["rambulance"] = {"Dogde 3500 Cab",0, "emergency"},
	["qrv"] = {"Ford Explorer",0, "emergency"},
	["firetruk"] = {"firetruk",0, "emergency"}
  },
  ["General"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=3,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"general.vehicle"}
	},
	["felon"] = {"C63",0, ""},
	["police100"] = {"Military Police",0, ""},
	["windsor"] = {"Bentley",0, ""},
	["ghispo2"] = {"Ghispo2",0, ""},
  },
  ["Polizei Helikopter"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=43,
	    blipcolor=38,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 5.1,
	  permissions={"police.vehicle"}
	},
    ["polmav"] = {"Maverick",0, "emergency"},
	["as332"] = {"as332",0, "emergency"},
	["as725"] = {"as725",0, "emergency"},
  },
   ["Medic Helikopter"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=43,
	    blipcolor=1,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 5.1,
	  permissions={"emergency.vehicle"}
	},
    ["supervolito2"] = {"EMS",0, "emergency"},
	["EC135"] = {" Airbus EC-135",0, ""}
  },
  ["Taxi"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=81,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"uber.vehicle"}
	},
    ["taxi"] = {"Taxi",0, ""},
  },
  ["Anwalt"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=7,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"Lawyer.vehicle"}
	},
    ["panto"] = {"Smart", 0, ""},
	["felon"] = {"Mercedes C63 AMG", 0, ""},
  },
  ["Lieferant"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=85,
	    blipcolor=31,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"delivery.vehicle"}
	},
    ["burrito"] = {"Fedex Sprinter",0, "Fedex"},
	["burrito2"] = {"DHL Sprinter",0, "DHL"},
	["burrito3"] = {"Novapost Sprinter",0, "Novapost"},
	["faggio2"] = {"Lieferando Scooter",0, "Lieferando"},
  },
  ["Flughafen"] = {
	_config = {
	  vtype="plane",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=359,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["208"] = {"Cessna 208",1886550, "1.8 Mio"},
	["707"] = {"Boeing 748",386800000, "386.8 Mio"},
	["739"] = {"Boeing 739",113800000, "113.8 Mio"},
	["747"] = {"Boeing 747",416800000, "416.8 Mio"},
	["748"] = {"Boeing 748",386800000, "386.8 Mio"},
	["757"] = {"Boeing 757",386800000, "386.8 Mio"},
	["773er"] = {"Boeing 773er",347100000, "347.1 Mio"},
	["788"] = {"Boeing 788",229500000, "229.5 Mio"},
	["a319"] = {"Airbus A319",229500000, "229.5 Mio"},
	["a320"] = {"Airbus A320",85000000, "Airbus A320"},
	["a333"] = {"Airbus A333",386800000, "386.8 Mio"},
	["a340"] = {"Airbus A340",386800000, "386.8 Mio"},
	["a343"] = {"Airbus A343",386800000, "386.8 Mio"},
	["a380"] = {"Airbus A380",386800000, "386.8 Mio"},
	["bac"] = {"Concorde",386800000, "386.8 Mio"},
	["dc10"] = {"DC 10",386800000, "386.8 Mio"},
	["dc30f"] = {"DC 30f",386800000, "386.8 Mio"},
	["emb100"] = {"EMB 100",386800000, "386.8 Mio"},
	["emb120"] = {"EMB 120",386800000, "386.8 Mio"},
	["emb145"] = {"EMB 145",386800000, "386.8 Mio"},
	["emb175"] = {"EMB 175",386800000, "386.8 Mio"},
	["emb190"] = {"EMB 190",386800000, "386.8 Mio"},
	["emb390fedex"] = {"EMB390",386800000, "386.8 Mio"},
	["emb1000"] = {"EMB100",386800000, "386.8 Mio"},
	["il76"] = {"IL76",386800000, "386.8 Mio"},
	["saab2000"] = {"Saab 200",386800000, "386.8 Mio"}
  },
   ["Kleinflugzeuge"] = {
	_config = {
	  vtype="plane",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=359,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["208"] = {"Cessna 208",1886550, "1.8 Mio"},
	["luxor"] = {"Luxor",1500000, "1.5 Mio"},
	["luxor2"] = {"Luxor Deluxe",10000000, "10 Mio"},
	["nimbus"] = {"Nimbus",1900000, "1.9 Mio"},
	["shamal"] = {"Shamal",1150000, "1.15 Mio"},
	["mammatus"] = {"Mammatus",300000, ""},
	["velum2"] = {"Velum",995000, ""},
	["dodo"] = {"Dodo",500000, ""},
	["cuban800"] = {"Cuban 800",240000, ""},
	["duster"] = {"Duster",275000, ""},
	["stunt"] = {"Stunt Plane",250000, ""},
  },
  ["helicopters"] = {
	_config = {
	  vtype="heli",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=360,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["swift2"] = {"Swift",850000, ""},
	["volatus"] = {"Volatus",750000, ""},
	["frogger"] = {"Frogger",550000, ""},
	["cargobob"] = {"MH-53 Pave Low",1750000, ""},
	["cargobob4"] = {"Frogger",1250000, ""},
	["maverick"] = {"Maverick",550000, ""},
  },
  ["president"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=360,
	    blipcolor=3,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"president.vehicle"}
	},
    ["e4b"] = {"Nightwatch (airforce1)",0, ""},
	["whitehawk"] = {"Marine One",0, ""},
	["skylift"] = {"Skylift",0, ""},
	["sspres"] = {"Secret Service SUV",0, ""},
	["pd5"] = {"ADMIN SUV",0, ""},
	["cargobob"] = {"MH-53 Pave Low",0, ""}
  },
  ["wolf"] = {
	_config = {
	  vtype="heli",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=360,
	    blipcolor=3,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"secret.vehicle"}
	},
	["whitehawk"] = {"Marine One",0, ""},
	["cargobob"] = {"MH-53 Pave Low",0, ""},
	["swift2"] = {"Swift",0, ""},
	["sspres"] = {"Secret Service SUV",0, ""},
	["onebeast"] = {"President Limo",0, ""},
	["fbi"] = {"Unmarked",0, ""},
	["volatus"] = {"Volatus",0, ""},
	["mvisiongt"] = {"mvisiongt",0, ""},
	["avenger"] = {"Avenger",0, ""},
	["pd5"] = {"ADMIN SUV",0, ""}
  },
  ["wolf2"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=357,
	    blipcolor=69,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"secret.vehicle"}
	},
	["sspres"] = {"Secret Service SUV",0, ""},
	["onebeast"] = {"President Limo",0, ""},
	["fbi"] = {"Unmarked",0, ""},
	["pd5"] = {"ADMIN SUV",0, ""},
	["arv10"] = {"Audi R8 V10",0, ""}
  },
  ["Schwertransport"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=5,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
	["burrito4"] = {"Mercedes Schwertransport",115000, ""},
	["dump"] = {"Kipplaster",25000000, ""}
  },
  ["addoncar"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=357,
	    blipcolor=69,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"vip.vehicle"}
	},
	["2fiftygt"] = {"2fiftygt",0, ""},
	["sq72016"] = {"Audi SQ7 2016",0, ""},
	["a8lfsi"] = {"Audi A8",0, ""},
	["urus2018"] = {"Lamborghini Urus",0, ""},
	["shiba"] = {"shiba",0, ""},
	["22bbublu"] = {"22bbublu",0, ""},
	["300gsl"] = {"300gsl",0, ""},
	["911ublu"] = {"911ublu",0, ""},
	["amv12"] = {"amv12",0, ""},
	["cadicts"] = {"cadicts",0, ""},
	["caymanub"] = {"caymanub",0, ""},
	["celicassi"] = {"celicassi",0, ""},
	["celicassi2"] = {"celicassi2",0, ""},
	["charublu"] = {"charublu",0, ""},
	["cobra"] = {"cobra",0, ""},
	["cygnet11"] = {"cygnet11",0, ""},
	["db700"] = {"db700",0, ""},
	["f50ub"] = {"f50",0, ""},
	["f360"] = {"f360",0, ""},
	["focusublu"] = {"Ford Focus",0, ""},
	["furaiub"] = {"Madza Furai",0, ""},
	["g37cs"] = {"g37cs",0, ""},
	["gallardo"] = {"Lamborghini Gallardo",0, ""},
	["genublu"] = {"genublu",0, ""},
	["gtbf"] = {"gtbf",0, ""},
	["gtrublu"] = {"gtrublu",0, ""},
	["laferublu"] = {"laferublu",0, ""},
	["lamven"] = {"lamven",0, ""},
	["lev8"] = {"lev8",0, ""},
	["lh610"] = {"lh610",0, ""},
	["mcublu"] = {"mcublu",0, ""},
	["miniub"] = {"Mini",0, ""},
	["miura"] = {"miura",0, ""},
	["musty5"] = {"musty5",0, ""},
	["mx5"] = {"Madza MX5",0, ""},
	["mx5a"] = {"Madza MX5A",0, ""},
	["p107"] = {"p107",0, ""},
	["p550a"] = {"p550a",0, ""},
	["p944"] = {"p944",0, ""},
	["p959"] = {"p959",0, ""},
	["panamera"] = {"Porsche Panamera",0, ""},
	["rczublu"] = {"rczublu",0, ""},
	["renmeg"] = {"renmeg",0, ""},
	["rx8"] = {"Madza RX8",0, ""},
	["slrublu"] = {"slrublu",0, ""},
	["slsublu"] = {"slsublu",0, ""},
	["slsublue"] = {"slsublue",0, ""},
	["sti05"] = {"sti05",0, ""},
	["tesla11"] = {"tesla11",0, ""},
	["vc7"] = {"vc7",0, ""},
	["vip99"] = {"vip99",0, ""},
	["volksci11"] = {"volksci11",0, ""},
	["z4i"] = {"z4i",0, ""},
	["zr1c3"] = {"zr1c3",0, ""},
	["350z"] = {"350z",0, ""},
	["350z2"] = {"350z2",0, ""},
	["750li"] = {"750li",0, ""},
	["750li2"] = {"750li2",0, ""},
	["2017chiron"] = {"Bugatti Chiron 2017",0, ""},
	["a45"] = {"Mercedes A45",0, ""},
	["asterion"] = {"asterion",0, ""},
	["BMWe90"] = {"BMWe90",0, ""},
	["cla45sb"] = {"cla45sb",0, ""},
	["e63w213"] = {"e63w213",0, ""},
	["e400w213"] = {"e400w213",0, ""},
	["ferrari812"] = {"Ferrari 812",0, ""},
	["ftipo"] = {"ftipo",0, ""},
	["gl63"] = {"gl63",0, ""},
	["gmt400"] = {"gmt400",0, ""},
	["hh1"] = {"hh1",0, ""},
	["integra"] = {"integra",0, ""},
	["lp770"] = {"lp770",0, ""},
	["lp770r"] = {"lp770r",0, ""},
	["lumma750"] = {"lumma750",0, ""},
	["optima"] = {"optima",0, ""},
	["rrd17"] = {"rrd17",0, ""},
	["s63w"] = {"s63w",0, ""},
	["s63w2"] = {"s63w2",0, ""},
	["s500w222"] = {"s500w222",0, ""},
	["s600w220"] = {"s600w220",0, ""},
	["silver94"] = {"silver94",0, ""},
	["trailblazer"] = {"trailblazer",0, ""},
	["twingo"] = {"Renault Twingo",0, ""},
	["vfox"] = {"vfox",0, ""},
	["vgmk2gti"] = {"vgmk2gti",0, ""},
	["vwmk6"] = {"vwmk6",0, ""},
	["w222wald"] = {"w222wald",0, ""},
	["x222"] = {"x222",0, ""},
	["2016rs7"] = {"Audi RS7 2016",0, ""},
	["up"] = {"VW UP",0, ""},
	["2f2frx7"] = {"2f2frx7",0, ""},
	["2f2fs2000"] = {"2f2fs2000",0, ""},
	["350zdk"] = {"350zdk",0, ""},
	["350zm"] = {"350zm",0, ""},
	["fnfjetta"] = {"fnfjetta",0, ""},
	["fnfrx7dom"] = {"fnfrx7dom",0, ""},
	["2f2fgtr34"] = {"2f2fgtr34",0, ""},
	["2f2fgts"] = {"2f2fgts",0, ""},
	["2f2fmk4"] = {"2f2fmk4",0, ""},
	["2f2fmle7"] = {"2f2fmle7",0, ""},
	["ff4wrx"] = {"ff4wrx",0, ""},
	["fnf4r34"] = {"fnf4r34",0, ""},
	["fnflan"] = {"fnflan",0, ""},
	["fnfmits"] = {"fnfmits",0, ""},
	["fnfmk4"] = {"fnfmk4",0, ""},
	["fnfrx7"] = {"fnfrx7",0, ""},
	["rs6pd600"] = {"rs6pd600",0, ""},
	["rs5"] = {"Audi RS5",0, ""},
	["srt2018"] = {"Dogde SRT 2018",0, ""},
	["raptor2017"] = {"Ford Raptor 2017",0, ""},
	["16charger"] = {"Dogde Charger 2016",0, ""},
	["ARgiulia"] = {"Alfa Romeo",0, ""},
	["m3e46"] = {"BMW M3 e46",0, ""},
	["gle63"] = {"gle63",0, ""},
	["cls63"] = {"Mercedes CLS 63",0, ""},
	["impala67"] = {"Chervolet Impala 67",0, ""},
	["mi8"] = {"BMW MI8",0, ""},
	["ni8"] = {"BMW NI8",0, ""},
	["velociraptor"] = {"Ford F-150 Hennessey Velociraptor",0, ""},
	["velociraptor"] = {"Ford F-150 Hennessey Velociraptor",0, ""},
	["velociraptor"] = {"Ford F-150 Hennessey Velociraptor",0, ""},
	["velociraptor"] = {"Ford F-150 Hennessey Velociraptor",0, ""},
	
  },
  ["addonbike"] = {
	_config = {
	  vtype="bike",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=226,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"vip.vehicle"}
	},
	["aprt"] = {"aprt",0, ""},
	["bimota"] = {"bimota",0, ""},
	["bmwr11"] = {"bmwr11",0, ""},
	["bmwrr"] = {"bmwrr",0, ""},
	["bmws"] = {"BMW 1100 RR",0, ""},
	["bmws1"] = {"bmws1",0, ""},
	["bmwsr"] = {"bmwsr",0, ""},
	["bmwsrn"] = {"bmwsrn",0, ""},
	["d99"] = {"Ducati 1199 Superleggera",0, ""},
	["ddc"] = {"Ducati 800 Monster",0, ""},
	["ddrr"] = {"ddrr",0, ""},
	["dgp15"] = {"dgp15",0, ""},
	["dgp215"] = {"dgp215",0, ""},
	["dhpm"] = {"Ducati 1100 Evo",0, ""},
	["diavel"] = {"diavel",0, ""},
	["gsxr"] = {"Suzuki GSX R",0, ""},
	["hcb18"] = {"Honda Hcb 1800",0, ""},
	["hcb1000"] = {"Honda Hcb 1000",0, ""},
	["hcbr"] = {"hcbr",0, ""},
	["hdfb"] = {"Harley Davidson USA",0, ""},
	["hdkn"] = {"hdkn",0, ""},
	["hdss"] = {"hdss",0, ""},
	["hf150"] = {"hf150",0, ""},
	["hfc250"] = {"Honda 250",0, ""},
	["hlcr"] = {"hlcr",0, ""},
	["hmarc"] = {"hmarc",0, ""},
	["honcb"] = {"honcb",0, ""},
	["honcbf"] = {"honcbf",0, ""},
	["honcbr"] = {"honcbr",0, ""},
	["hor14"] = {"hor14",0, ""},
	["hor600"] = {"hor600",0, ""},
	["hrc213"] = {"hrc213",0, ""},
	["hrcp213"] = {"hrcp213",0, ""},
	["hsmr"] = {"hsmr",0, ""},
	["hsmx"] = {"hsmx",0, ""},
	["hxre"] = {"hxre",0, ""},
	["kaneda"] = {"kaneda",0, ""},
	["kaneda2"] = {"kaneda2",0, ""},
	["ke400"] = {"ke400",0, ""},
	["kgpz"] = {"kgpz",0, ""},
	["knh2"] = {"knh2",0, ""},
	["knh22"] = {"knh22",0, ""},
	["knzx"] = {"knzx",0, ""},
	["ktmpit"] = {"ktmpit",0, ""},
	["ktmrc"] = {"KTM RC 200 ",0, ""},
	["ktmrc8"] = {"KTM RC8 1190",0, ""},
	["ktmtrr"] = {"ktmtrr",0, ""},
	["kx450f"] = {"kx450f",0, ""},
	["kz750"] = {"Kawasaki Z750",0, ""},
	["kza1000"] = {"kza1000",0, ""},
	["minib"] = {"minib",0, ""},
	["mvab"] = {"mvab",0, ""},
	["mvaf"] = {"mvaf",0, ""},
	["p51"] = {"p51",0, ""},
	["polbati"] = {"polbati",0, ""},
	["r3"] = {"Yamaha R3",0, ""},
	["r6"] = {" Yamaha R6",0, ""},
	["rsv4"] = {"rsv4",0, ""},
	["sban"] = {"sban",0, ""},
	["sgsx13"] = {"sgsx13",0, ""},
	["sgsxr"] = {"sgsxr",0, ""},
	["spcj"] = {"spcj",0, ""},
	["speedb"] = {"speedb",0, ""},
	["srmz"] = {"srmz",0, ""},
	["srmz2"] = {"srmz2",0, ""},
	["ss750"] = {"ss750",0, ""},
	["sxf450"] = {"sxf450",0, ""},
	["tmrs"] = {"tmrs",0, ""},
	["vindi"] = {"vindi",0, ""},
	["xj6"] = {"xj6",0, ""},
	["yfz6"] = {"yfz6",0, ""},
	["yfz8"] = {"yfz8",0, ""},
	["yfz68"] = {"yfz68",0, ""},
	["ym1"] = {"ym1",0, ""},
	["yml1"] = {"yml1",0, ""},
	["ymt10"] = {"ymt10",0, ""},
	["yr1"] = {"yr1",0, ""},
	["yrd1"] = {"yrd1",0, ""},
	["yss"] = {"yss",0, ""},
	["ytmax"] = {"ytmax",0, ""},
	["yxj6"] = {"yxj6",0, ""},
	["yxt"] = {"yxt",0, ""},
	["yzf"] = {"yzf",0, ""},
	["zx10"] = {"Kawasaki ZX 10R",0, ""},

	
  },
  ["Bundeswehr Fahrzeuge"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=69,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"bw.vehicle"}
	},
    ["2s19"] = {"Arti",0, ""},
	["akaciya"] = {"Arti 2",0, ""},
	["alkhalid2"] = {"Alkhalid",0, ""},
	["armata"] = {"Armata",0, ""},
	["armatav2"] = {"Armata V2",0, ""},
	["bmd"] = {"BMD Flugabwehr",0, ""},
	["bmp"] = {"BMP Flugabwehr",0, ""},
	["bmpt2"] = {"BMPT2 Flugabwehr",0, ""},
	["cha2"] = {"Cha2",0, ""},
	["chal2mtgreen"] = {"Chal2 Green",0, ""},
	["chal2mtkhaki"] = {"Chal2 Khaki",0, ""},
	["cougar4"] = {"MG Humvee",0, ""},
	["crabdesert"] = {"Crab Desert",0, ""},
	["crabgreen"] = {"Crab Green",0, ""},
	["crabkhaki"] = {"Crab Khaki",0, ""},
	["crabunarmed"] = {"Crab Unarmed",0, ""},
	["crabwinter"] = {"Crab Winter",0, ""},
	["crabwoodland"] = {"Crab Woodland",0, ""},
	["fury"] = {"Fury",0, ""},
	["geop"] = {"Geop Flugabwehr",0, ""},
	["gri"] = {"Gri MTV",0, ""},
	["hasrad"] = {"Boden-Luft Raketen Humvee",0, ""},
	["humvee1"] = {"Humvee1",0, ""},
	["humvee2"] = {"Humvee2",0, ""},
	["k2"] = {"K2 Panzer",0, ""},
	["kamaz"] = {"Kamaz",0, ""},
	["L2a6"] = {"L2a6 Panzer",0, ""},
	["l2a7custom"] = {"L2a7 Custom",0, ""},
	["l2a7germand"] = {"L2a7 Germand",0, ""},
	["l2a7germanw"] = {"L2a7 Germanw",0, ""},
	["l2a7green"] = {"L2a7 Green",0, ""},
	["l2a7khaki"] = {"L2a7 Khaki",0, ""},
	["l2a7winter"] = {"L2a7 Winter",0, ""},
	["lav"] = {"Lav",0, ""},
	["lavad"] = {"Lavad",0, ""},
	["lec"] = {"Lec Panzer",0, ""},
    ["leo1a5"] = {"Leo1a5",0, ""},
	["leo2a6"] = {"Leo2a6",0, ""},
	["m1a1"] = {"M1a1",0, ""},
	["m1a2"] = {"M1a2",0, ""},
	["m1a2v2"] = {"M1a2v2",0, ""},
	["m2a2"] = {"M2a2",0, ""},
	["m2a2v2"] = {"M2a2v2",0, ""},
	["m41woodland"] = {"M41woodland",0, ""},
	["m109p"] = {"M109p",0, ""},
	["m1116"] = {"M1116",0, ""},
	["m1116v2"] = {"M1116v2",0, ""},
	["matv"] = {"Matv",0, ""},
	["mk4"] = {"MK4",0, ""},
	["ngtiger"] = {"Ngtiger",0, ""},
	["nitra"] = {"Nitra",0, ""},
	["pl01desert"] = {"Pl01desert",0, ""},
	["pl01green"] = {"Pl01green",0, ""},
	["pl01khaki"] = {"Pl01khaki",0, ""},
	["pl01winter"] = {"Pl01winter",0, ""},
	["pl01woodland"] = {"Pl01woodland",0, ""},
	["sherman"] = {"Sherman",0, ""},
	["stryker"] = {"Stryker",0, ""},
	["t15"] = {"T15",0, ""},
	["t34"] = {"T34",0, ""},
	["t62"] = {"T62",0, ""},
	["t90a"] = {"T90",0, ""},
	["t90ms"] = {"T90ms",0, ""},
	["t90msv2"] = {"T90 V2",0, ""},
	["t390"] = {"T390",0, ""},
	["tiger"] = {"Tiger Humvee",0, ""},
	["tiger2"] = {"Tiger2 Humvee",0, ""},
	["tunguska"] = {"Tunguska",0, ""},
	["ty99"] = {"Ty99",0, ""},
	["type99v2"] = {"Ty99 V2",0, ""},
	["v7a1"] = {"V7a1",0, ""},
	["varsuk"] = {"Varsuk",0, ""},
	["zfb"] = {"Zfb",0, ""},
	["abrams"] = {"Abrams",0, ""},
	["abrams2"] = {"Abrams 2",0, ""},
	["brad"] = {"Brad",0, ""},
	["brad2"] = {"Brad 2",0, ""},
	["bspec"] = {"Humvee Bspec",0, ""},
	["hmvs"] = {"Humvee VS",0, ""},
	["lav25ifv"] = {"Lav25ifv",0, ""},
	["lavadadv"] = {"Lavadadv",0, ""},
	["m1128s"] = {"M1128s",0, ""},
	["m9395"] = {"M9395 Truck",0, ""},
	["mrap"] = {"Mrap Humvee",0, ""},
	["unarmed1"] = {"Unarmed1",0, ""},
	["unarmed2"] = {"Unarmed2",0, ""},
	["uparmor"] = {"Uparmor Humvee",0, ""},
	["uparmorw"] = {"Uparmorw Humvee",0, ""},
	["m977hl"] = {"M977HL Truck",0, ""},
	["m977ht"] = {"M977HT Truck",0, ""},
	["mtfft"] = {"MTFFT Truck",0, ""}
  },
  ["Bundeswehr Flugzeuge"] = {
	_config = {
	  vtype="plane",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=359,
	    blipcolor=69,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"bw.vehicle"}
	},
    ["sr71"] = {"SR71 Blackbird",0, ""},
	["f16intl"] = {"F16intl",0, ""},
	["f16liaf"] = {"F16liaf",0, ""},
	["fa18gd"] = {"Fa18gd",0, ""},
	["fa18gsh"] = {"Fa18gsh",0, ""},
	["fa18gv"] = {"fa18gv",0, ""},
	["erieye"] = {"Erieye",0, ""},
	["f7p"] = {"F7p",0, ""},
	["F7PG"] = {"F7PG",0, ""},
	["f16b52"] = {"F16B52",0, ""},
	["jf17"] = {"JF17",0, ""},
	["kj2000"] = {"Kj2000 Überwachungsflugzeug",0, ""},
	["spirit"] = {"Spirit Tarnkappenbomber",0, ""},
	["be3s"] = {"BE3S Überwachungsflugzeug",0, ""},
	["kc10"] = {"KC10",0, ""},
	["f16aff"] = {"F16AFF",0, ""},
	["f16cff"] = {"F16CFF",0, ""},
	["f16dc"] = {"F16DC",0, ""},
	["f16di"] = {"F16DI",0, ""},
	["u2r"] = {"U2R",0, ""},
	["yf12"] = {"YF12 Blackbird",0, ""},
	["e2dh"] = {"E2DH",0, ""},
	["f4p2"] = {"F4P2",0, ""},
	["hydra"] = {"Hydra",0, ""},
	["lazer"] = {"Lazer",0, ""},
	["growler"] = {"Growler",0, ""}
  },
  ["Bundeswehr Helikopter"] = {
	_config = {
	  vtype="heli",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=360,
	    blipcolor=69,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"bw.vehicle"}
	},
    ["samson"] = {"Avatar Heli",0, ""},
	["scorpion"] = {"Avatar Scoprion",0, ""},
	["trudy"] = {"Avatar Trudy",0, ""},
	["hh60gph"] = {"HH60",0, ""},
	["mh6"] = {"Mh6 Little Bird",0, ""},
	["savage"] = {"Savage",0, ""},
	["buzzard"] = {"Buzzard",0, ""},
	["buzzard2"] = {"Buzzard Unarmed",0, ""},
	["mh60s"] = {"MH60S",0, ""},
	["seahawk"] = {"Seahawk",0, ""},
	["uh1y"] = {"UH1",0, ""},
	["cargobob"] = {"MH-53 Pave Low",0, ""}
  },
  ["boats"] = {
	_config = {
	  vtype="boat",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=356,
	    blipcolor=34,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["suntrap"] = {"Shitzu Jetmax",30000, ""},
	["tug"] = {"Buckingham Tug",30000, ""},
	["marquis"] = {"Dinka Marquis",30000, ""},
	["toro"] = {"Lampadati Toro",30000, ""},
	["dinghy2"] = {"Nagasaki Dinghy (2 Seater)",30000, ""},
	["dinghy3"] = {"Nagasaki Dinghy (4 Seater Black)",30000, ""},
	["dinghy"] = {"Nagasaki Dinghy (4 Seater Red)",30000, ""},
	["speeder"] = {"Pegassi Speeder",30000, ""},
	["tropic"] = {"Shitzu Tropic",30000, ""},
	["seashark"] = {"Speedophile Seashark",30000, ""},
	["submersible"] = {"Submersible",30000, ""},
	["submersible2"] = {"Submersible (Kraken)",30000, ""},
  },
  ["LKW"] = {
	_config = {
	  vtype="truck",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=318,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["mule"] = {"Mule",275000, ""},
	["mule2"] = {"Mule 2",275000, ""},
	["boxville2"] = {"Boxville 2",275000, ""},
	["boxville3"] = {"Boxville 3",275000, ""},
	["boxville4"] = {"Boxville 4",275000, ""},
	["hauler"] = {"Scania",130000, ""},
	["hauler2"] = {"Volvo",130000, ""},
	["daf"] = {"Daf",130000, ""},
	["actros"] = {"Mercedes Actros",130000, ""},
	["man"] = {"MAN",130000, ""},
	["packer"] = {"Packer",125000, ""},
	["phantom"] = {"Renault",115000, ""},
	["pounder"] = {"Boxville 4",365000, ""},
	["benson"] = {"Benson",325000, ""},
  },
  ["Mafia"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=69,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"mafia.vehicle"}
	},
    ["mule"] = {"Mule",275000, ""},
  },
  ["Anhänger"] = {
	_config = {
	  vtype="trailer",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=318,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1
	},
    ["trflat"] = {"Flatbed",145000, ""},
	["trailers"] = {"Curtain-side Trailer",425000, ""},
	["trailers2"] = {"Box Trailer",425000, ""},
	["trailers3"] = {"Ramp Trailer",425000, ""},
	["trailers4"] = {"Container Trailer",425000, ""},
	["tvtrailer"] = {"Werbe Trailer",425000, ""},
	["docktrailer"] = {"Dock Trailer",425000, ""},
  },
  ["Bus"] = {
	_config = {
	  vtype="trailer",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=318,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"bus.vehicle"}
	},
    ["bus"] = {"Bus",0, ""},
	["airbus"] = {"Bus 2",0, ""},
	["coach"] = {"Reisebus",0, ""},
	["rentalbus"] = {"Rentalbus",0, ""},
	["tourbus"] = {"Tourbus",0, ""},
  },
  ["ADAC"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=31,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"repair.vehicle"}
	},
    ["towtruck2"] = {"Abschleppwagen",0, "towtruck2"},
	["towtruck"] = {"Abschlepptruck",0, "towtruck"},
	["flatbed2"] = {"Flatbed",0, "flatbed"},
	["utillitruck3"] = {"Utility Truck",0, "utillitruck3"}
  },
  ["Arbeitswagen"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=31,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"arbeit.vehicle"}
	},
    ["utillitruck"] = {"Pickup Truck",0, "Pickup"},
	["utillitruck2"] = {"Plumbing Truck",0, "Plumbing"}
  },
  ["Jäger"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=50,
	    blipcolor=31,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"jäger.vehicle"}
	},
	["mesa"] = {"Mesa",0, ""},
	["patriot"] = {"Hummer",0, ""}
  },
  ["bankdriver"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=67,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"bankdriver.vehicle"}
	},
    ["stockade"] = {"stockade",0, "stockade"}
  },
  ["Medical Driver"] = {
	_config = {
	  vtype="car",
	  opt={
  	    owned = true,
	    buy = true,
	    sell = true,
	    rent = true,
	    store = true
	  },
	  blip={
        id=67,
	    blipcolor=4,
		draw = true
	  },
	  --displayname=lang.garage.names.example(),
	  marker={
	    scale=0.7,
	    color={0,255,125},
	    alpha=125,
		distance=150,
		draw = true
	  },
	  radius = 1,
	  permissions={"medical.vehicle"}
	},
    ["pony2"] = {"Medical Weed Van",0, "pony2"}
  }
  
  
}

-- {garage_type,x,y,z}
cfg.garages = {
  {"Starter Vehicles",141.66270446777,-1081.8083496094,29.192489624023},
  --{"new additions",853.93768310547,-2093.705078125,30.243104934692},
  {"Low End",1208.6527099609,-1262.5780029297,35.226768493652},
  {"Off Road",1777.6678466797,3335.7856445313,41.171855926514},
  {"High End",-361.23114013672,-121.23441314697,38.696125030518},
  {"Mid Range",717.70239257813,-1088.8958740234,22.360628128052},
  --{"Exotic Cars",-42.400775909424,-1098.3619384766,26.422369003296},
  {"Exotic Cars",-47.568492889404,-1112.6322021484,26.435792922974},
  {"Mid Range",-146.44941711426,-1172.2514648438,25.176259994507},
  {"sportsclassics",112.275, 6619.83, 31.8154},
  {"Motorcycles",-205.789, -1308.02, 31.2916},
  {"Biker",-564.17785644531,302.38415527344,83.164054870605},
  {"Polizei",451.2121887207,-1018.2822875977,28.495378494263},	-- jobs garage
  {"Cadet",451.2121887207,-1018.2822875977,28.495378494263}, --- cadet garage
  {"Polizei",477.99038696289,-1020.9154663086,28.011201858521},
  {"Bounty",512.07818603516,-3052.1579589844,6.0687308311462},  
  {"Polizei",1868.5435791016,3696.0295410156,33.5693359375},  -- sandy shores
--  {"Polizei",-476.92425537109,6026.9951171875,31.340547561646},  -- paleto
  {"Polizei",-453.40893554688,5998.4370117188,31.340545654297},  -- paleto
  {"emergency",361.98434448242,-613.19586181641,28.771278381348}, -- main
  {"emergency",1833.3223876953,3661.3088378906,33.875843048096}, -- sandy shores
  {"emergency",-255.98040771484,6346.1127929688,32.426189422607}, -- paleto
  {"Taxi",907.38049316406,-175.86546325684,74.130157470703}, -- jobs garage
  {"Anwalt",-1900.7344970703,-560.89245605469,11.802397727966},-- jobs garage
  {"Lieferant",977.67095947266,-1020.6136474609,41.282001495361},   -- jobs garage
  {"ADAC",401.42602539063,-1631.7053222656,29.291942596436},   -- jobs garage
  {"bankdriver",222.68756103516,222.95631408691,105.41331481934},   -- jobs garage
  {"Polizei Helikopter",449.30340576172,-981.24963378906,43.69165802002}, -- Main PD
  {"helicopters",1770.2171630859,3239.5561523438,42.13171005249}, -- Sandy Shores
  {"Polizei Helikopter",-482.7326965332,5996.501953125,33.215789794922}, -- Paleto Bay
  {"Medic Helikopter",449.30340576172,-981.24963378906,43.69165802002}, -- Main PD
  {"Medic Helikopter",1770.2171630859,3239.5561523438,42.13171005249}, -- Sandy Shores
  {"Medic Helikopter",-482.7326965332,5996.501953125,33.215789794922}, -- Paleto Bay  
  {"Medic Helikopter",351.90243530273,-588.03149414063,74.165649414063},
  {"Fisher's Boat",1508.8854980469,3908.5732421875,30.031631469727},
  {"Medical Driver",-319.82263183594,-942.8408203125,31.080617904663},
  {"Kleinflugzeuge",1712.0706787109,3252.8146972656,41.062412261963},
  {"Kleinflugzeuge",2123, 4805, 41.19},
  {"Flughafen",-900.4,-3200.5,13.9},
  {"helicopters",-1112.4,-2883.7,13.9},
  {"helicopters",-745, -1468, 5},
  {"helicopters",-144.3690032959,-593.11566162109,211.7752532959},
  {"helicopters",3323.1638183594,-77.303504943848,13.700162887573},
  {"boats",-849.5, -1368.64, 1.6},
  {"boats",1538, 3902, 30.35},
  {"House Garage",-748.54907226563,-79.599884033203,41.749591827393}, -- KW Parkplatz 
  {"House Garage",915.20788574219,1250.0860595703,362.1096496582},
  {"House Garage",257.23233032227,-775.4296875,30.64727973938},
  {"House Garage",-333.93905639648,-937.95190429688,31.080610275269},
  {"House Garage",-687.93560791016,-1407.8442382813,5.0005202293396},
  {"House Garage",-959.68811035156,-2705.1071777344,13.831033706665},
  {"House Garage",-638.08142089844,56.500617980957,43.794803619385},  -- house garage
  {"House Garage",-1457.4909667969,-500.61614990234,32.202766418457},
  {"House Garage",-25.273494720459,-1434.4365234375,30.653142929077},
  {"House Garage",-1185.7239990234,-1493.7857666016,4.3796696662903},
  {"House Garage",-819.40551757813,183.72904968262,72.136161804199},
  {"House Garage",-49.851615905762,-787.69146728516,44.07527923584},   -- Maze Bank
  {"House Garage",15.016004562378,547.76171875,176.14279174805},
  {"House Garage",1977.1169433594,3827.2368164063,32.373237609863},
  {"House Garage",2480.5893554688,4953.958984375,45.026481628418},
  {"House Garage",15.016004562378,547.76171875,176.14279174805},
  {"House Garage",229.1184387207,-983.47760009766,-98.999946594238},    --10 Garage
  {"House Garage",-1415.1351318359,-956.41815185547,7.2369647026062},
  {"House Garage",497.44073486328,-1702.4410400391,29.400140762329},
  {"House Garage",684.44097900391,-719.58734130859,25.884830474854},
--  {"House Garage",-796.00256347656,304.55578613281,85.700416564941},   -- Eclipse Tower
  {"House Garage",-259.08013916016,-680.39465332031,32.830478668213},
  {"House Garage",-72.769035339355,495.79925537109,144.10296630859},
  {"House Garage",-121.71002960205,509.85540771484,142.5652923584},
  {"House Garage",-188.32077026367,502.87573242188,134.23774719238},
  {"House Garage",1366.5837402344,1147.4722900391,113.41327667236},
  {"House Garage",-2132.8979492188,3265.6882324219,32.810302734375},
 -- {"Arbeitswagen",483.14529418945,-1097.7204589844,29.201652526855},
  --{"Jäger",-700.63146972656,5781.0087890625,17.330968856812  },
  --{"General",-1823.6870117188,3280.6337890625,32.752014160156},
  --{"president",-2009.1561279297,3002.8342285156,32.81031036377},
  --{"president",-986.6572265625,-3345.4604492188,13.984936714172},
  --{"president",-762.33837890625,-1453.9731445313,5.0005192756653},
  --{"Bundeswehr Fahrzeuge",-1751.4886474609,3074.3996582031,32.828887939453},
  --{"Bundeswehr Flugzeuge",-1835.9243164063,2979.3896484375,32.80997467041},
  --{"Bundeswehr Helikopter", -1877.0789794922,2805.447265625,32.806468963623},
  {"wolf",-2462.9262695313,752.50048828125,296.919921875},
  --{"wolf2",-2468.7819824219,733.84002685547,285.9192199707},
  {"Anhänger",834.73107910156,-1961.5838623047,29.061609268188},
  {"Anhänger",150.13175964355,6427.654296875,31.299169540405},
  {"addoncar",-1161.189453125,-1689.6329345703,4.4494228363037},
  {"addonbike",-1157.4826660156,-1684.1563720703,4.4494819641113},
  {"Schwertransport",2031.7021484375,3157.9060058594,45.146110534668},
  {"Bus",452.48107910156,-582.61145019531,28.49981880188},
  {"LKW",127.61854553223,6416.5834960938,31.326658248901},
  {"LKW",836.9,-1983.3,29.3}
}

return cfg

Execute Lua Online

lua

--[[
作者: TinXie
聯繫: [email protected]
使用地圖:Mini_Dungeon(迷你地城)
]]--

-- for iphone X, black Knight

--[[

 -----------A
  ---------B
-------------C

]]--


-- 以下可修改參數 
Buff_Time = 120 -- 輔助技能時間, 單位: 秒
Buff_Button_XY = {
    X = 711 ,
    Y = 424
} -- 輔助技能按鈕位子

Master_Skill_XY = {
    X = 815 ,
    Y = 466
} -- 主要攻擊技能按鈕位子

Form_Feed_Button_XY = {
    X = 922 ,
    Y = 367
} -- 技能換頁

Path_Left_XY = {
    X = 59 ,
    Y = 432
} -- 左
Path_Right_XY = {
    X = 177 ,
    Y = 432
} -- 右
Path_Up_XY = {
    X = 120 ,
    Y = 368
} -- 上
Path_Down_XY = {
    X = 118 ,
    Y = 493
} -- 下

-- 以上可以修改
DEFAULT_WIDTH = 960;
Settings:setCompareDimension(true, DEFAULT_WIDTH);
Settings:setScriptDimension(true, DEFAULT_WIDTH);
--

-- 以下新手請勿修改 
startTime = os.time() 
endTime = startTime + Buff_Time;

function discharge()
    if os.time() >= endTime then
        buffButton_B();
        startTime = os.time();
        endTime = startTime + 120;
    else
    
    end

end

function touch(x, y, sec)
    touchDown(Location(x,y), sec);
    wait(0.5);
    touchUp(Location(x,y), sec);
    wait(0.5);
end

-- 攻擊
function attack(index)
    log("開始攻擊");
    for i=1, index do 
        touch(Master_Skill_XY.X, Master_Skill_XY.Y, 0.7);
    end

end

-- BUFF 施放
function buffButton_B()
    --log("buffButton_B");
    touch(Form_Feed_Button_XY.X, Form_Feed_Button_XY.Y, 0.2);
    touch(Buff_Button_XY.X, Buff_Button_XY.Y, 0.2);
    touch(Form_Feed_Button_XY.X, Form_Feed_Button_XY.Y, 0.2);
end
  
-- 向下跳
function jumpDown()
    touch(Path_Down_XY.X, Path_Down_XY.Y, 0.3);
    wait(0.3);
    touch(Path_Down_XY.X, Path_Down_XY.Y, 0.3);
    wait(0.3);
end

-- 主要流程
function process()
    wait(0.2);
    touch(Path_Right_XY.X, Path_Right_XY.Y, 0.7); --往右
    wait(0.2);
    attack(6)
    wait(0.2);
    -- log("完成清除C層");
  
    touch(Path_Left_XY.X, Path_Left_XY.Y, 0.7); --往左
    wait(0.2);
    touch(Path_Up_XY.X, Path_Up_XY.Y, 0.03); --往上
    attack(5)
    wait(0.2);
    -- log("完成清除A層");
  
    touch(Path_Right_XY.X, Path_Right_XY.Y, 0.6); --往右
    wait(0.01);
    jumpDown()
    attack(4)
    wait(0.2);
    -- log("完成清除B層");
    
    touch(Path_Right_XY.X, Path_Right_XY.Y, 1.2); --往右
    wait(0.1);
    -- log("B層前往A-最右邊");

    
    touch(Path_Left_XY.X, Path_Left_XY.Y, 0.8); --往左
    wait(0.2);
    attack(6)
    wait(0.2);
    -- log("2完成清除C層");
  
    touch(Path_Right_XY.X, Path_Right_XY.Y, 0.8); --往右
    wait(0.3);
    touch(Path_Up_XY.X, Path_Up_XY.Y, 0.03); --往上
    wait(0.2);
    attack(5)
    wait(0.2);
    -- log("2完成清除A層");

    touch(Path_Left_XY.X, Path_Left_XY.Y, 0.6); --往左
    wait(0.1);
    jumpDown()
    attack(5)
    wait(0.2);
    -- log("2完成清除B層");
  
    touch(Path_Left_XY.X, Path_Left_XY.Y, 1.2); --往左
  
    
end 

--移動至C層
function moveToDestination()
    -- log("開始移動")
    touch(Path_Right_XY.X, Path_Right_XY.Y, 0.8); --往右
    wait(0.4);
    touch(Path_Left_XY.X, Path_Left_XY.Y,, 1.5); --往左
    -- log("移動完成")
end

moveToDestination()
buffButton_B()

while (true) do
    discharge()
    process()
end


































print("Hello World!")

asdw

lua

--[ local variable definition --]
a = 10

--[ while loop execution --]
repeat

   print("value of a:", a)
   a=a+1  
   until a > 30
  
   if( a > 15)
   then
      --[ terminate the loop using break statement --]
      break
      
   end
	

Just some coding for ROBLOX.

lua

-- Objects

local Tripp = Instance.new("ScreenGui")
local mainframe = Instance.new("Frame")
local openclose = Instance.new("TextButton")
local dragbarBACKGROUND = Instance.new("TextLabel")
local dragbarRED = Instance.new("TextLabel")
local dragbarWHITE = Instance.new("TextLabel")
local btnserver = Instance.new("TextButton")
local btnvehicles = Instance.new("TextButton")
local btnplayers = Instance.new("TextButton")
local btnspawning = Instance.new("TextButton")
local btnmods = Instance.new("TextButton")
local modframe = Instance.new("Frame")
local spawningframe = Instance.new("Frame")
local playersframe = Instance.new("Frame")
local vehiclesframe = Instance.new("Frame")
local serverframe = Instance.new("Frame")
local introframe = Instance.new("Frame")
local txtcreatorRED = Instance.new("TextLabel")
local txtcreatorWHITE = Instance.new("TextLabel")
local txtcreator = Instance.new("TextLabel")
local modAimbot = Instance.new("TextButton")
local modC4 = Instance.new("TextButton")
local modCorpse = Instance.new("TextButton")
local modESP = Instance.new("TextButton")
local modESP2 = Instance.new("TextButton")
local modFog = Instance.new("TextButton")
local modGod = Instance.new("TextButton")
local modHunger = Instance.new("TextButton")
local modRecoil = Instance.new("TextButton")
local modStamina = Instance.new("TextButton")
local modTeleport = Instance.new("TextButton")
local modNoclip = Instance.new("TextButton")
local scrollingItems = Instance.new("ScrollingFrame")
local btnSpawn = Instance.new("TextButton")
local spawnFalKit = Instance.new("TextButton")
local spawnNavigation = Instance.new("TextButton")
local txtboxSearch = Instance.new("TextBox")
local scrollingPlayers = Instance.new("ScrollingFrame")
local playerKill = Instance.new("TextButton")
local playerKillAll = Instance.new("TextButton")
local playerSpectate = Instance.new("TextButton")
local playerStealAllG = Instance.new("TextButton")
local playerStealAllI = Instance.new("TextButton")
local playerStealGuns = Instance.new("TextButton")
local playerStealItems = Instance.new("TextButton")
local playerTeleport = Instance.new("TextButton")
local labelSelectedPlayers = Instance.new("TextLabel")
local scrollingVehicles = Instance.new("ScrollingFrame")
local txtboxSpeed = Instance.new("TextBox")
local vehicleDestroy = Instance.new("TextButton")
local vehicleDestroyAll = Instance.new("TextButton")
local vehicleESP = Instance.new("TextButton")
local vehicleSetSpeed = Instance.new("TextButton")
local vehicleTeleport = Instance.new("TextButton")
local labelSelectedVehicle = Instance.new("TextLabel")
local Blue = Instance.new("TextButton")
local Green = Instance.new("TextButton")
local Red = Instance.new("TextButton")
local White = Instance.new("TextButton")
local Yellow = Instance.new("TextButton")
local messageSpam = Instance.new("TextButton")
local messageText = Instance.new("TextBox")
local L_2_ = game.Players.LocalPlayer;

-- Properties

Tripp.Name = "Tripp"
Tripp.Parent = game.CoreGui

mainframe.Name = "mainframe"
mainframe.Parent = Tripp
mainframe.BackgroundColor3 = Color3.new(0, 0, 0)
mainframe.BorderColor3 = Color3.new(0.839216, 0, 0)
mainframe.Position = UDim2.new(0.5, -229, 0.5, 650)
mainframe.Size = UDim2.new(0, 457, 0, 292)

openclose.Name = "openclose"
openclose.Parent = mainframe
openclose.BackgroundColor3 = Color3.new(1, 1, 1)
openclose.BackgroundTransparency = 1
openclose.Position = UDim2.new(0, 414, 0, 0)
openclose.Size = UDim2.new(0, 43, 0, 20)
openclose.AutoButtonColor = false
openclose.Font = Enum.Font.SourceSans
openclose.FontSize = Enum.FontSize.Size96
openclose.Text = "-"
openclose.TextColor3 = Color3.new(0.827451, 0.827451, 0.827451)
openclose.TextSize = 75

modframe.Name = "modframe"
modframe.Parent = mainframe
modframe.BackgroundColor3 = Color3.new(0, 0, 0)
modframe.BackgroundTransparency = 1
modframe.BorderColor3 = Color3.new(0, 0, 0)
modframe.Position = UDim2.new(0.5, -229, 0.5, -107)
modframe.Size = UDim2.new(0, 457, 0, 253)

spawningframe.Name = "spawningframe"
spawningframe.Parent = mainframe
spawningframe.BackgroundColor3 = Color3.new(0, 0, 0)
spawningframe.BackgroundTransparency = 1
spawningframe.BorderColor3 = Color3.new(0, 0, 0)
spawningframe.Position = UDim2.new(0.5, -229, 0.5, -107)
spawningframe.Size = UDim2.new(0, 457, 0, 253)
spawningframe.Visible = false

playersframe.Name = "playersframe"
playersframe.Parent = mainframe
playersframe.BackgroundColor3 = Color3.new(0, 0, 0)
playersframe.BackgroundTransparency = 1
playersframe.BorderColor3 = Color3.new(0, 0, 0)
playersframe.Position = UDim2.new(0.5, -229, 0.5, -107)
playersframe.Size = UDim2.new(0, 457, 0, 253)
playersframe.Visible = false

vehiclesframe.Name = "vehiclesframe"
vehiclesframe.Parent = mainframe
vehiclesframe.BackgroundColor3 = Color3.new(0, 0, 0)
vehiclesframe.BackgroundTransparency = 1
vehiclesframe.BorderColor3 = Color3.new(0, 0, 0)
vehiclesframe.Position = UDim2.new(0.5, -229, 0.5, -107)
vehiclesframe.Size = UDim2.new(0, 457, 0, 253)
vehiclesframe.Visible = false

serverframe.Name = "serverframe"
serverframe.Parent = mainframe
serverframe.BackgroundColor3 = Color3.new(0, 0, 0)
serverframe.BackgroundTransparency = 1
serverframe.BorderColor3 = Color3.new(0, 0, 0)
serverframe.Position = UDim2.new(0.5, -229, 0.5, -107)
serverframe.Size = UDim2.new(0, 457, 0, 253)
serverframe.Visible = false

btnmods.Name = "btnmods"
btnmods.Parent = mainframe
btnmods.BackgroundColor3 = Color3.new(1, 1, 1)
btnmods.Position = UDim2.new(0, -122, 0, 620)
btnmods.Size = UDim2.new(0, 119, 0, 41)
btnmods.Style = Enum.ButtonStyle.RobloxButton
btnmods.Font = Enum.Font.SourceSans
btnmods.FontSize = Enum.FontSize.Size14
btnmods.Text = "Mods"
btnmods.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
btnmods.TextSize = 14

dragbarBACKGROUND.Name = "dragbarBACKGROUND"
dragbarBACKGROUND.Parent = mainframe
dragbarBACKGROUND.BackgroundColor3 = Color3.new(0, 0, 0)
dragbarBACKGROUND.BackgroundTransparency = 0.64999997615814
dragbarBACKGROUND.BorderColor3 = Color3.new(0.92549, 0, 0.0117647)
dragbarBACKGROUND.Size = UDim2.new(0, 457, 0, 34)
dragbarBACKGROUND.Font = Enum.Font.SourceSans
dragbarBACKGROUND.FontSize = Enum.FontSize.Size14
dragbarBACKGROUND.Text = ""
dragbarBACKGROUND.TextSize = 14

dragbarRED.Name = "dragbarRED"
dragbarRED.Parent = mainframe
dragbarRED.BackgroundColor3 = Color3.new(1, 1, 1)
dragbarRED.BackgroundTransparency = 1
dragbarRED.Size = UDim2.new(0, 457, 0, 19)
dragbarRED.Font = Enum.Font.Antique
dragbarRED.FontSize = Enum.FontSize.Size36
dragbarRED.Text = "Tripp"
dragbarRED.TextColor3 = Color3.new(0.92549, 0, 0.0117647)
dragbarRED.TextSize = 33

dragbarWHITE.Name = "dragbarWHITE"
dragbarWHITE.Parent = mainframe
dragbarWHITE.BackgroundColor3 = Color3.new(1, 1, 1)
dragbarWHITE.BackgroundTransparency = 1
dragbarWHITE.Position = UDim2.new(0, 0, 0, 2)
dragbarWHITE.Size = UDim2.new(0, 457, 0, 19)
dragbarWHITE.Font = Enum.Font.Antique
dragbarWHITE.FontSize = Enum.FontSize.Size32
dragbarWHITE.Text = "Tripp"
dragbarWHITE.TextColor3 = Color3.new(0.92549, 0.92549, 0.92549)
dragbarWHITE.TextSize = 31

btnspawning.Name = "btnspawning"
btnspawning.Parent = mainframe
btnspawning.BackgroundColor3 = Color3.new(1, 1, 1)
btnspawning.Position = UDim2.new(0, -122, 0, 670)
btnspawning.Size = UDim2.new(0, 119, 0, 41)
btnspawning.Style = Enum.ButtonStyle.RobloxButton
btnspawning.Font = Enum.Font.SourceSans
btnspawning.FontSize = Enum.FontSize.Size14
btnspawning.Text = "Spawning"
btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
btnspawning.TextSize = 14

btnplayers.Name = "btnplayers"
btnplayers.Parent = mainframe
btnplayers.BackgroundColor3 = Color3.new(1, 1, 1)
btnplayers.Position = UDim2.new(0, -122, 0, 720)
btnplayers.Size = UDim2.new(0, 119, 0, 41)
btnplayers.Style = Enum.ButtonStyle.RobloxButton
btnplayers.Font = Enum.Font.SourceSans
btnplayers.FontSize = Enum.FontSize.Size14
btnplayers.Text = "Players"
btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
btnplayers.TextSize = 14

btnvehicles.Name = "btnvehicles"
btnvehicles.Parent = mainframe
btnvehicles.BackgroundColor3 = Color3.new(1, 1, 1)
btnvehicles.Position = UDim2.new(0, -122, 0, 770)
btnvehicles.Size = UDim2.new(0, 119, 0, 41)
btnvehicles.Style = Enum.ButtonStyle.RobloxButton
btnvehicles.Font = Enum.Font.SourceSans
btnvehicles.FontSize = Enum.FontSize.Size14
btnvehicles.Text = "Vehicles"
btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
btnvehicles.TextSize = 14

btnserver.Name = "btnserver"
btnserver.Parent = mainframe
btnserver.BackgroundColor3 = Color3.new(1, 1, 1)
btnserver.Position = UDim2.new(0, -122, 0, 820)
btnserver.Size = UDim2.new(0, 119, 0, 41)
btnserver.Style = Enum.ButtonStyle.RobloxButton
btnserver.Font = Enum.Font.SourceSans
btnserver.FontSize = Enum.FontSize.Size14
btnserver.Text = "Server"
btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
btnserver.TextSize = 14

introframe.Name = "introframe"
introframe.Parent = Tripp
introframe.BackgroundColor3 = Color3.new(0, 0, 0)
introframe.BorderColor3 = Color3.new(0.839216, 0, 0)
introframe.Position = UDim2.new(0, 347, 0, 221)
introframe.Size = UDim2.new(0, 0, 0, 0)

txtcreatorRED.Name = "txtcreatorRED"
txtcreatorRED.Parent = introframe
txtcreatorRED.BackgroundColor3 = Color3.new(1, 1, 1)
txtcreatorRED.BackgroundTransparency = 1
txtcreatorRED.BorderColor3 = Color3.new(1, 1, 1)
txtcreatorRED.Position = UDim2.new(0, 0, 0, 39)
txtcreatorRED.Size = UDim2.new(0, 189, 0, 50)
txtcreatorRED.Font = Enum.Font.Antique
txtcreatorRED.FontSize = Enum.FontSize.Size96
txtcreatorRED.Text = "Tripp"
txtcreatorRED.TextColor3 = Color3.new(0.92549, 0, 0.0117647)
txtcreatorRED.TextTransparency = 1
txtcreatorRED.TextSize = 100
txtcreatorRED.TextWrapped = true

txtcreatorWHITE.Name = "txtcreatorWHITE"
txtcreatorWHITE.Parent = introframe
txtcreatorWHITE.BackgroundColor3 = Color3.new(1, 1, 1)
txtcreatorWHITE.BackgroundTransparency = 1
txtcreatorWHITE.BorderColor3 = Color3.new(1, 1, 1)
txtcreatorWHITE.Position = UDim2.new(0, 0, 0, 39)
txtcreatorWHITE.Size = UDim2.new(0, 189, 0, 50)
txtcreatorWHITE.Font = Enum.Font.Antique
txtcreatorWHITE.FontSize = Enum.FontSize.Size96
txtcreatorWHITE.Text = "Tripp"
txtcreatorWHITE.TextColor3 = Color3.new(0.92549, 0.92549, 0.92549)
txtcreatorWHITE.TextTransparency = 1
txtcreatorWHITE.TextSize = 87
txtcreatorWHITE.TextWrapped = true

txtcreator.Name = "txtcreator"
txtcreator.Parent = introframe
txtcreator.BackgroundColor3 = Color3.new(1, 1, 1)
txtcreator.BackgroundTransparency = 1
txtcreator.BorderColor3 = Color3.new(1, 1, 1)
txtcreator.Position = UDim2.new(0, 0, 0, 138)
txtcreator.Size = UDim2.new(0, 189, 0, 22)
txtcreator.Font = Enum.Font.SourceSansItalic
txtcreator.FontSize = Enum.FontSize.Size18
txtcreator.Text = "GUI Made by DeepTrip"
txtcreator.TextColor3 = Color3.new(0.839216, 0, 0)
txtcreator.TextTransparency = 1
txtcreator.TextSize = 17
txtcreator.TextWrapped = true

modAimbot.Name = "modAimbot"
modAimbot.Parent = modframe
modAimbot.BackgroundColor3 = Color3.new(1, 1, 1)
modAimbot.BorderColor3 = Color3.new(1, 1, 1)
modAimbot.Position = UDim2.new(0, 178, 0, 68)
modAimbot.Size = UDim2.new(0, 101, 0, 33)
modAimbot.Style = Enum.ButtonStyle.RobloxRoundButton
modAimbot.Font = Enum.Font.SciFi
modAimbot.FontSize = Enum.FontSize.Size14
modAimbot.Text = "Aimbot"
modAimbot.TextColor3 = Color3.new(1, 1, 1)
modAimbot.TextSize = 14

modC4.Name = "modC4"
modC4.Parent = modframe
modC4.BackgroundColor3 = Color3.new(1, 1, 1)
modC4.BorderColor3 = Color3.new(1, 1, 1)
modC4.Position = UDim2.new(0, 304, 0, 210)
modC4.Size = UDim2.new(0, 101, 0, 33)
modC4.Style = Enum.ButtonStyle.RobloxRoundButton
modC4.Font = Enum.Font.SciFi
modC4.FontSize = Enum.FontSize.Size14
modC4.Text = "C4 Walk: OFF"
modC4.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
modC4.TextSize = 14

modCorpse.Name = "modCorpse"
modCorpse.Parent = modframe
modCorpse.BackgroundColor3 = Color3.new(1, 1, 1)
modCorpse.BorderColor3 = Color3.new(1, 1, 1)
modCorpse.Position = UDim2.new(0, 178, 0, 126)
modCorpse.Size = UDim2.new(0, 101, 0, 33)
modCorpse.Style = Enum.ButtonStyle.RobloxRoundButton
modCorpse.Font = Enum.Font.SciFi
modCorpse.FontSize = Enum.FontSize.Size14
modCorpse.Text = "TP Corpse"
modCorpse.TextColor3 = Color3.new(1, 1, 1)
modCorpse.TextSize = 14

modESP.Name = "modESP"
modESP.Parent = modframe
modESP.BackgroundColor3 = Color3.new(1, 1, 1)
modESP.BorderColor3 = Color3.new(1, 1, 1)
modESP.Position = UDim2.new(0, 304, 0, 16)
modESP.Size = UDim2.new(0, 101, 0, 33)
modESP.Style = Enum.ButtonStyle.RobloxRoundButton
modESP.Font = Enum.Font.SciFi
modESP.FontSize = Enum.FontSize.Size14
modESP.Text = "ESP"
modESP.TextColor3 = Color3.new(1, 1, 1)
modESP.TextSize = 14

modESP2.Name = "modESP2"
modESP2.Parent = modframe
modESP2.BackgroundColor3 = Color3.new(1, 1, 1)
modESP2.BorderColor3 = Color3.new(1, 1, 1)
modESP2.Position = UDim2.new(0, 178, 0, 210)
modESP2.Size = UDim2.new(0, 101, 0, 33)
modESP2.Style = Enum.ButtonStyle.RobloxRoundButton
modESP2.Font = Enum.Font.SciFi
modESP2.FontSize = Enum.FontSize.Size14
modESP2.Text = "Name ESP: OFF"
modESP2.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
modESP2.TextSize = 14

modFog.Name = "modFog"
modFog.Parent = modframe
modFog.BackgroundColor3 = Color3.new(1, 1, 1)
modFog.BorderColor3 = Color3.new(1, 1, 1)
modFog.Position = UDim2.new(0, 178, 0, 16)
modFog.Size = UDim2.new(0, 101, 0, 33)
modFog.Style = Enum.ButtonStyle.RobloxRoundButton
modFog.Font = Enum.Font.SciFi
modFog.FontSize = Enum.FontSize.Size14
modFog.Text = "Remove Fog"
modFog.TextColor3 = Color3.new(1, 1, 1)
modFog.TextSize = 14

modGod.Name = "modGod"
modGod.Parent = modframe
modGod.BackgroundColor3 = Color3.new(1, 1, 1)
modGod.BorderColor3 = Color3.new(1, 1, 1)
modGod.Position = UDim2.new(0, 52, 0, 210)
modGod.Size = UDim2.new(0, 101, 0, 33)
modGod.Style = Enum.ButtonStyle.RobloxRoundButton
modGod.Font = Enum.Font.SciFi
modGod.FontSize = Enum.FontSize.Size14
modGod.Text = "Godmode"
modGod.TextColor3 = Color3.new(0.454902, 0, 0.356863)
modGod.TextSize = 14

modHunger.Name = "modHunger"
modHunger.Parent = modframe
modHunger.BackgroundColor3 = Color3.new(1, 1, 1)
modHunger.BorderColor3 = Color3.new(1, 1, 1)
modHunger.Position = UDim2.new(0, 304, 0, 68)
modHunger.Size = UDim2.new(0, 101, 0, 33)
modHunger.Style = Enum.ButtonStyle.RobloxRoundButton
modHunger.Font = Enum.Font.SciFi
modHunger.FontSize = Enum.FontSize.Size14
modHunger.Text = "Hunger/Thirst"
modHunger.TextColor3 = Color3.new(1, 1, 1)
modHunger.TextSize = 14

modRecoil.Name = "modRecoil"
modRecoil.Parent = modframe
modRecoil.BackgroundColor3 = Color3.new(1, 1, 1)
modRecoil.BorderColor3 = Color3.new(1, 1, 1)
modRecoil.Position = UDim2.new(0, 52, 0, 68)
modRecoil.Size = UDim2.new(0, 101, 0, 33)
modRecoil.Style = Enum.ButtonStyle.RobloxRoundButton
modRecoil.Font = Enum.Font.SciFi
modRecoil.FontSize = Enum.FontSize.Size14
modRecoil.Text = "No Recoil"
modRecoil.TextColor3 = Color3.new(1, 1, 1)
modRecoil.TextSize = 14

modStamina.Name = "modStamina"
modStamina.Parent = modframe
modStamina.BackgroundColor3 = Color3.new(1, 1, 1)
modStamina.BorderColor3 = Color3.new(1, 1, 1)
modStamina.Position = UDim2.new(0, 52, 0, 126)
modStamina.Size = UDim2.new(0, 101, 0, 33)
modStamina.Style = Enum.ButtonStyle.RobloxRoundButton
modStamina.Font = Enum.Font.SciFi
modStamina.FontSize = Enum.FontSize.Size14
modStamina.Text = "Unlim. Stamina"
modStamina.TextColor3 = Color3.new(1, 1, 1)
modStamina.TextSize = 14

modTeleport.Name = "modTeleport"
modTeleport.Parent = modframe
modTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
modTeleport.BorderColor3 = Color3.new(1, 1, 1)
modTeleport.Position = UDim2.new(0, 53, 0, 16)
modTeleport.Size = UDim2.new(0, 101, 0, 33)
modTeleport.Style = Enum.ButtonStyle.RobloxRoundButton
modTeleport.Font = Enum.Font.SciFi
modTeleport.FontSize = Enum.FontSize.Size14
modTeleport.Text = "'E' Teleport"
modTeleport.TextColor3 = Color3.new(1, 1, 1)
modTeleport.TextSize = 14

modNoclip.Name = "modNoclip"
modNoclip.Parent = modframe
modNoclip.BackgroundColor3 = Color3.new(1, 1, 1)
modNoclip.BorderColor3 = Color3.new(1, 1, 1)
modNoclip.Position = UDim2.new(0, 304, 0, 126)
modNoclip.Size = UDim2.new(0, 101, 0, 33)
modNoclip.Style = Enum.ButtonStyle.RobloxRoundButton
modNoclip.Font = Enum.Font.SciFi
modNoclip.FontSize = Enum.FontSize.Size14
modNoclip.Text = "Noclip"
modNoclip.TextColor3 = Color3.new(1, 1, 1)
modNoclip.TextSize = 14

scrollingItems.Name = "scrollingItems"
scrollingItems.Parent = spawningframe
scrollingItems.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
scrollingItems.BackgroundTransparency = 0.44999998807907
scrollingItems.BorderColor3 = Color3.new(1, 1, 1)
scrollingItems.Position = UDim2.new(0, 23, 0, 55)
scrollingItems.Size = UDim2.new(0, 174, 0, 143)
scrollingItems.Visible = false

btnSpawn.Name = "btnSpawn"
btnSpawn.Parent = spawningframe
btnSpawn.BackgroundColor3 = Color3.new(0, 0.486275, 0.054902)
btnSpawn.BackgroundTransparency = 0.44999998807907
btnSpawn.BorderColor3 = Color3.new(1, 1, 1)
btnSpawn.Position = UDim2.new(0, 23, 0, 210)
btnSpawn.Size = UDim2.new(0, 174, 0, 33)
btnSpawn.Font = Enum.Font.SciFi
btnSpawn.FontSize = Enum.FontSize.Size18
btnSpawn.Text = "Spawn"
btnSpawn.TextColor3 = Color3.new(1, 1, 1)
btnSpawn.TextSize = 16

spawnFalKit.Name = "spawnFalKit"
spawnFalKit.Parent = spawningframe
spawnFalKit.BackgroundColor3 = Color3.new(1, 1, 1)
spawnFalKit.BorderColor3 = Color3.new(1, 1, 1)
spawnFalKit.Position = UDim2.new(0, 282, 0, 71)
spawnFalKit.Size = UDim2.new(0, 118, 0, 33)
spawnFalKit.Style = Enum.ButtonStyle.RobloxRoundButton
spawnFalKit.Font = Enum.Font.SciFi
spawnFalKit.FontSize = Enum.FontSize.Size14
spawnFalKit.Text = "FAL Kit"
spawnFalKit.TextColor3 = Color3.new(1, 1, 1)
spawnFalKit.TextSize = 14

spawnNavigation.Name = "spawnNavigation"
spawnNavigation.Parent = spawningframe
spawnNavigation.BackgroundColor3 = Color3.new(1, 1, 1)
spawnNavigation.BorderColor3 = Color3.new(1, 1, 1)
spawnNavigation.Position = UDim2.new(0, 282, 0, 126)
spawnNavigation.Size = UDim2.new(0, 118, 0, 33)
spawnNavigation.Style = Enum.ButtonStyle.RobloxRoundButton
spawnNavigation.Font = Enum.Font.SciFi
spawnNavigation.FontSize = Enum.FontSize.Size14
spawnNavigation.Text = "Navigation"
spawnNavigation.TextColor3 = Color3.new(1, 1, 1)
spawnNavigation.TextSize = 14

txtboxSearch.Name = "txtboxSearch"
txtboxSearch.Parent = spawningframe
txtboxSearch.BackgroundColor3 = Color3.new(0.666667, 0.666667, 0.666667)
txtboxSearch.BackgroundTransparency = 0.44999998807907
txtboxSearch.BorderColor3 = Color3.new(1, 1, 1)
txtboxSearch.Position = UDim2.new(0, 23, 0, 15)
txtboxSearch.Size = UDim2.new(0, 174, 0, 26)
txtboxSearch.Font = Enum.Font.SciFi
txtboxSearch.FontSize = Enum.FontSize.Size14
txtboxSearch.Text = "[SEARCH ITEM]"
txtboxSearch.TextColor3 = Color3.new(1, 1, 1)
txtboxSearch.TextSize = 14

scrollingPlayers.Name = "scrollingPlayers"
scrollingPlayers.Parent = playersframe
scrollingPlayers.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
scrollingPlayers.BackgroundTransparency = 0.44999998807907
scrollingPlayers.BorderColor3 = Color3.new(1, 1, 1)
scrollingPlayers.Position = UDim2.new(0, 93, 0, 123)
scrollingPlayers.Size = UDim2.new(0, 272, 0, 93)

playerKill.Name = "playerKill"
playerKill.Parent = playersframe
playerKill.BackgroundColor3 = Color3.new(1, 1, 1)
playerKill.BorderColor3 = Color3.new(1, 1, 1)
playerKill.Position = UDim2.new(0, 38, 0, 67)
playerKill.Size = UDim2.new(0, 80, 0, 24)
playerKill.Style = Enum.ButtonStyle.RobloxRoundButton
playerKill.Font = Enum.Font.SciFi
playerKill.FontSize = Enum.FontSize.Size18
playerKill.Text = "Kill"
playerKill.TextColor3 = Color3.new(0.615686, 0, 0.584314)
playerKill.TextSize = 15

playerKillAll.Name = "playerKillAll"
playerKillAll.Parent = playersframe
playerKillAll.BackgroundColor3 = Color3.new(1, 1, 1)
playerKillAll.BorderColor3 = Color3.new(1, 1, 1)
playerKillAll.Position = UDim2.new(0, 22, 0, 15)
playerKillAll.Size = UDim2.new(0, 101, 0, 33)
playerKillAll.Style = Enum.ButtonStyle.RobloxRoundButton
playerKillAll.Font = Enum.Font.SciFi
playerKillAll.FontSize = Enum.FontSize.Size14
playerKillAll.Text = "Kill All"
playerKillAll.TextColor3 = Color3.new(1, 1, 1)
playerKillAll.TextSize = 14

playerSpectate.Name = "playerSpectate"
playerSpectate.Parent = playersframe
playerSpectate.BackgroundColor3 = Color3.new(1, 1, 1)
playerSpectate.BorderColor3 = Color3.new(1, 1, 1)
playerSpectate.Position = UDim2.new(0, 139, 0, 221)
playerSpectate.Size = UDim2.new(0, 179, 0, 29)
playerSpectate.Style = Enum.ButtonStyle.RobloxRoundButton
playerSpectate.Font = Enum.Font.SciFi
playerSpectate.FontSize = Enum.FontSize.Size18
playerSpectate.Text = "Spectate: OFF"
playerSpectate.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
playerSpectate.TextSize = 15

playerStealAllG.Name = "playerStealAllG"
playerStealAllG.Parent = playersframe
playerStealAllG.BackgroundColor3 = Color3.new(1, 1, 1)
playerStealAllG.BorderColor3 = Color3.new(1, 1, 1)
playerStealAllG.Position = UDim2.new(0, 178, 0, 16)
playerStealAllG.Size = UDim2.new(0, 101, 0, 33)
playerStealAllG.Style = Enum.ButtonStyle.RobloxRoundButton
playerStealAllG.Font = Enum.Font.SciFi
playerStealAllG.FontSize = Enum.FontSize.Size14
playerStealAllG.Text = "Steal All Guns"
playerStealAllG.TextColor3 = Color3.new(1, 1, 1)
playerStealAllG.TextSize = 14

playerStealAllI.Name = "playerStealAllI"
playerStealAllI.Parent = playersframe
playerStealAllI.BackgroundColor3 = Color3.new(1, 1, 1)
playerStealAllI.BorderColor3 = Color3.new(1, 1, 1)
playerStealAllI.Position = UDim2.new(0, 337, 0, 15)
playerStealAllI.Size = UDim2.new(0, 101, 0, 33)
playerStealAllI.Style = Enum.ButtonStyle.RobloxRoundButton
playerStealAllI.Font = Enum.Font.SciFi
playerStealAllI.FontSize = Enum.FontSize.Size14
playerStealAllI.Text = "Steal All Items"
playerStealAllI.TextColor3 = Color3.new(1, 1, 1)
playerStealAllI.TextSize = 14

playerStealGuns.Name = "playerStealGuns"
playerStealGuns.Parent = playersframe
playerStealGuns.BackgroundColor3 = Color3.new(1, 1, 1)
playerStealGuns.BorderColor3 = Color3.new(1, 1, 1)
playerStealGuns.Position = UDim2.new(0, 132, 0, 67)
playerStealGuns.Size = UDim2.new(0, 80, 0, 24)
playerStealGuns.Style = Enum.ButtonStyle.RobloxRoundButton
playerStealGuns.Font = Enum.Font.SciFi
playerStealGuns.FontSize = Enum.FontSize.Size18
playerStealGuns.Text = "Steal Guns"
playerStealGuns.TextColor3 = Color3.new(0.615686, 0, 0.584314)
playerStealGuns.TextSize = 15

playerStealItems.Name = "playerStealItems"
playerStealItems.Parent = playersframe
playerStealItems.BackgroundColor3 = Color3.new(1, 1, 1)
playerStealItems.BorderColor3 = Color3.new(1, 1, 1)
playerStealItems.Position = UDim2.new(0, 229, 0, 67)
playerStealItems.Size = UDim2.new(0, 80, 0, 24)
playerStealItems.Style = Enum.ButtonStyle.RobloxRoundButton
playerStealItems.Font = Enum.Font.SciFi
playerStealItems.FontSize = Enum.FontSize.Size18
playerStealItems.Text = "Steal Items"
playerStealItems.TextColor3 = Color3.new(0.615686, 0, 0.584314)
playerStealItems.TextSize = 15

playerTeleport.Name = "playerTeleport"
playerTeleport.Parent = playersframe
playerTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
playerTeleport.BorderColor3 = Color3.new(1, 1, 1)
playerTeleport.Position = UDim2.new(0, 321, 0, 68)
playerTeleport.Size = UDim2.new(0, 80, 0, 24)
playerTeleport.Style = Enum.ButtonStyle.RobloxRoundButton
playerTeleport.Font = Enum.Font.SciFi
playerTeleport.FontSize = Enum.FontSize.Size18
playerTeleport.Text = "Goto"
playerTeleport.TextColor3 = Color3.new(0.615686, 0, 0.584314)
playerTeleport.TextSize = 15

labelSelectedPlayers.Name = "labelSelectedPlayers"
labelSelectedPlayers.Parent = playersframe
labelSelectedPlayers.BackgroundColor3 = Color3.new(1, 1, 1)
labelSelectedPlayers.BackgroundTransparency = 1
labelSelectedPlayers.Position = UDim2.new(0, 93, 0, 100)
labelSelectedPlayers.Size = UDim2.new(0, 270, 0, 22)
labelSelectedPlayers.Font = Enum.Font.SciFi
labelSelectedPlayers.FontSize = Enum.FontSize.Size18
labelSelectedPlayers.Text = "Selected:"
labelSelectedPlayers.TextColor3 = Color3.new(1, 1, 1)
labelSelectedPlayers.TextSize = 15
labelSelectedPlayers.TextStrokeColor3 = Color3.new(1, 1, 1)

scrollingVehicles.Name = "scrollingVehicles"
scrollingVehicles.Parent = vehiclesframe
scrollingVehicles.BackgroundColor3 = Color3.new(0.372549, 0.372549, 0.372549)
scrollingVehicles.BackgroundTransparency = 0.44999998807907
scrollingVehicles.BorderColor3 = Color3.new(1, 1, 1)
scrollingVehicles.Position = UDim2.new(0, 119, 0, 126)
scrollingVehicles.Size = UDim2.new(0, 220, 0, 111)

txtboxSpeed.Name = "txtboxSpeed"
txtboxSpeed.Parent = vehiclesframe
txtboxSpeed.BackgroundColor3 = Color3.new(0.666667, 0.666667, 0.666667)
txtboxSpeed.BackgroundTransparency = 0.44999998807907
txtboxSpeed.BorderColor3 = Color3.new(1, 1, 1)
txtboxSpeed.Position = UDim2.new(0, 354, 0, 126)
txtboxSpeed.Size = UDim2.new(0, 90, 0, 26)
txtboxSpeed.Font = Enum.Font.SciFi
txtboxSpeed.FontSize = Enum.FontSize.Size12
txtboxSpeed.Text = "[SPEED]"
txtboxSpeed.TextColor3 = Color3.new(1, 1, 1)
txtboxSpeed.TextSize = 12

vehicleDestroy.Name = "vehicleDestroy"
vehicleDestroy.Parent = vehiclesframe
vehicleDestroy.BackgroundColor3 = Color3.new(1, 1, 1)
vehicleDestroy.BorderColor3 = Color3.new(1, 1, 1)
vehicleDestroy.Position = UDim2.new(0, 117, 0, 75)
vehicleDestroy.Size = UDim2.new(0, 80, 0, 24)
vehicleDestroy.Style = Enum.ButtonStyle.RobloxRoundButton
vehicleDestroy.Font = Enum.Font.SciFi
vehicleDestroy.FontSize = Enum.FontSize.Size18
vehicleDestroy.Text = "Destroy"
vehicleDestroy.TextColor3 = Color3.new(0.615686, 0, 0.584314)
vehicleDestroy.TextSize = 15

vehicleDestroyAll.Name = "vehicleDestroyAll"
vehicleDestroyAll.Parent = vehiclesframe
vehicleDestroyAll.BackgroundColor3 = Color3.new(1, 1, 1)
vehicleDestroyAll.BorderColor3 = Color3.new(1, 1, 1)
vehicleDestroyAll.Position = UDim2.new(0, 128, 0, 19)
vehicleDestroyAll.Size = UDim2.new(0, 101, 0, 33)
vehicleDestroyAll.Style = Enum.ButtonStyle.RobloxRoundButton
vehicleDestroyAll.Font = Enum.Font.SciFi
vehicleDestroyAll.FontSize = Enum.FontSize.Size14
vehicleDestroyAll.Text = "Destroy All"
vehicleDestroyAll.TextColor3 = Color3.new(1, 1, 1)
vehicleDestroyAll.TextSize = 14

vehicleESP.Name = "vehicleESP"
vehicleESP.Parent = vehiclesframe
vehicleESP.BackgroundColor3 = Color3.new(1, 1, 1)
vehicleESP.BorderColor3 = Color3.new(1, 1, 1)
vehicleESP.Position = UDim2.new(0, 229, 0, 19)
vehicleESP.Size = UDim2.new(0, 101, 0, 33)
vehicleESP.Style = Enum.ButtonStyle.RobloxRoundButton
vehicleESP.Font = Enum.Font.SciFi
vehicleESP.FontSize = Enum.FontSize.Size14
vehicleESP.Text = "Car ESP: OFF"
vehicleESP.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
vehicleESP.TextSize = 14

vehicleSetSpeed.Name = "vehicleSetSpeed"
vehicleSetSpeed.Parent = vehiclesframe
vehicleSetSpeed.BackgroundColor3 = Color3.new(1, 1, 1)
vehicleSetSpeed.BorderColor3 = Color3.new(1, 1, 1)
vehicleSetSpeed.Position = UDim2.new(0, 349, 0, 165)
vehicleSetSpeed.Size = UDim2.new(0, 100, 0, 29)
vehicleSetSpeed.Style = Enum.ButtonStyle.RobloxRoundButton
vehicleSetSpeed.Font = Enum.Font.SciFi
vehicleSetSpeed.FontSize = Enum.FontSize.Size18
vehicleSetSpeed.Text = "SET"
vehicleSetSpeed.TextColor3 = Color3.new(1, 1, 1)
vehicleSetSpeed.TextSize = 15

vehicleTeleport.Name = "vehicleTeleport"
vehicleTeleport.Parent = vehiclesframe
vehicleTeleport.BackgroundColor3 = Color3.new(1, 1, 1)
vehicleTeleport.BorderColor3 = Color3.new(1, 1, 1)
vehicleTeleport.Position = UDim2.new(0, 262, 0, 72)
vehicleTeleport.Size = UDim2.new(0, 80, 0, 24)
vehicleTeleport.Style = Enum.ButtonStyle.RobloxRoundButton
vehicleTeleport.Font = Enum.Font.SciFi
vehicleTeleport.FontSize = Enum.FontSize.Size18
vehicleTeleport.Text = "Goto"
vehicleTeleport.TextColor3 = Color3.new(0.615686, 0, 0.584314)
vehicleTeleport.TextSize = 15

labelSelectedVehicle.Name = "labelSelectedVehicle"
labelSelectedVehicle.Parent = vehiclesframe
labelSelectedVehicle.BackgroundColor3 = Color3.new(1, 1, 1)
labelSelectedVehicle.BackgroundTransparency = 1
labelSelectedVehicle.Position = UDim2.new(0, 120, 0, 106)
labelSelectedVehicle.Size = UDim2.new(0, 217, 0, 19)
labelSelectedVehicle.Font = Enum.Font.SciFi
labelSelectedVehicle.FontSize = Enum.FontSize.Size18
labelSelectedVehicle.Text = "Selected:"
labelSelectedVehicle.TextColor3 = Color3.new(1, 1, 1)
labelSelectedVehicle.TextSize = 15
labelSelectedVehicle.TextStrokeColor3 = Color3.new(1, 1, 1)

Blue.Name = "Blue"
Blue.Parent = serverframe
Blue.BackgroundColor3 = Color3.new(0.101961, 0, 0.623529)
Blue.Position = UDim2.new(0, 267, 0, 80)
Blue.Size = UDim2.new(0, 45, 0, 26)
Blue.Font = Enum.Font.SourceSans
Blue.FontSize = Enum.FontSize.Size14
Blue.Text = ""
Blue.TextSize = 14

Green.Name = "Green"
Green.Parent = serverframe
Green.BackgroundColor3 = Color3.new(0, 0.623529, 0.176471)
Green.Position = UDim2.new(0, 206, 0, 80)
Green.Size = UDim2.new(0, 45, 0, 26)
Green.Font = Enum.Font.SourceSans
Green.FontSize = Enum.FontSize.Size14
Green.Text = ""
Green.TextSize = 14

Red.Name = "Red"
Red.Parent = serverframe
Red.BackgroundColor3 = Color3.new(0.623529, 0, 0.00784314)
Red.Position = UDim2.new(0, 92, 0, 80)
Red.Size = UDim2.new(0, 45, 0, 26)
Red.Font = Enum.Font.SourceSans
Red.FontSize = Enum.FontSize.Size14
Red.Text = ""
Red.TextSize = 14

White.Name = "White"
White.Parent = serverframe
White.BackgroundColor3 = Color3.new(0.839216, 0.839216, 0.839216)
White.Position = UDim2.new(0, 325, 0, 80)
White.Size = UDim2.new(0, 45, 0, 26)
White.Font = Enum.Font.SourceSans
White.FontSize = Enum.FontSize.Size14
White.Text = ""
White.TextSize = 14

Yellow.Name = "Yellow"
Yellow.Parent = serverframe
Yellow.BackgroundColor3 = Color3.new(0.839216, 0.882353, 0)
Yellow.Position = UDim2.new(0, 149, 0, 80)
Yellow.Size = UDim2.new(0, 45, 0, 26)
Yellow.Font = Enum.Font.SourceSans
Yellow.FontSize = Enum.FontSize.Size14
Yellow.Text = ""
Yellow.TextSize = 14

messageSpam.Name = "messageSpam"
messageSpam.Parent = serverframe
messageSpam.BackgroundColor3 = Color3.new(1, 1, 1)
messageSpam.BorderColor3 = Color3.new(1, 1, 1)
messageSpam.Position = UDim2.new(0, 107, 0, 160)
messageSpam.Size = UDim2.new(0, 242, 0, 54)
messageSpam.Style = Enum.ButtonStyle.RobloxRoundButton
messageSpam.Font = Enum.Font.SciFi
messageSpam.FontSize = Enum.FontSize.Size24
messageSpam.Text = "Chat Spam: OFF"
messageSpam.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
messageSpam.TextSize = 19

messageText.Name = "messageText"
messageText.Parent = serverframe
messageText.BackgroundColor3 = Color3.new(0.6, 0.6, 0.6)
messageText.BackgroundTransparency = 0.30000001192093
messageText.BorderColor3 = Color3.new(1, 1, 1)
messageText.Position = UDim2.new(0, 103, 0, 32)
messageText.Size = UDim2.new(0, 252, 0, 34)
messageText.Font = Enum.Font.SciFi
messageText.FontSize = Enum.FontSize.Size24
messageText.Text = "{Tripp v1}"
messageText.TextColor3 = Color3.new(0.854902, 0.854902, 0.854902)
messageText.TextSize = 20

local opening = false
local closing = false
local openmem = 1

wait(0.1)
introframe:TweenSize(UDim2.new(0, 190, 0, 160), 'Out', 'Bounce', 1, false)
wait(0.8)
for i = 1,0,-.1 do
wait()
txtcreator.TextTransparency = i
txtcreatorRED.TextTransparency = i
txtcreatorWHITE.TextTransparency = i
end
wait(1.8)
for i = 0,1,.1 do
wait()
txtcreator.TextTransparency = i
txtcreatorRED.TextTransparency = i
txtcreatorWHITE.TextTransparency = i
end
introframe:TweenSize(UDim2.new(0,0,0,0), 'Out', 'Quad', 0.5, false)
introframe.Active = false
wait(.5)
introframe.BackgroundTransparency = 1
wait(.2)
introframe:Destroy()
opening = true
mainframe:TweenPosition(UDim2.new(0.5, -229, 0.5, -146), 'Out', 'Elastic', 1, false)

wait(.4)
btnmods:TweenPosition(UDim2.new(0, -122, 0, 40), 'Out', 'Elastic', 1, false)
wait()
btnspawning:TweenPosition(UDim2.new(0, -122, 0, 90), 'Out', 'Elastic', 1, false)
wait()
btnplayers:TweenPosition(UDim2.new(0, -122, 0, 140), 'Out', 'Elastic', 1, false)
wait()
btnvehicles:TweenPosition(UDim2.new(0, -122, 0, 190), 'Out', 'Elastic', 1, false)
wait()
btnserver:TweenPosition(UDim2.new(0, -122, 0, 240), 'Out', 'Elastic', 1, false)
opening = false

wait(2)
mainframe.Active = true
mainframe.Draggable = true

function open()
	btnmods.Visible = true
	btnspawning.Visible = true
	btnplayers.Visible = true
	btnvehicles.Visible = true
	btnserver.Visible = true

	opening = true
	openclose.TextSize = 75
	openclose.Text = "-"
	mainframe:TweenSize(UDim2.new(0, 457, 0, 292), 'Out', 'Quad', 0.5, false)
	dragbarBACKGROUND:TweenSize(UDim2.new(0, 457, 0, 34), 'Out', 'Quad', 0.5, false)
	dragbarRED:TweenSize(UDim2.new(0, 457, 0, 19), 'Out', 'Quad', 0.5, false)
	dragbarWHITE:TweenSize(UDim2.new(0, 457, 0, 19), 'Out', 'Quad', 0.5, false)
	openclose:TweenPosition(UDim2.new(0, 414, 0, 0), 'Out', 'Quad', 0.5, false)
	
	btnmods:TweenPosition(UDim2.new(0, -122, 0, 40), 'Out', 'Quad', 0.8, false)
	wait()
	btnspawning:TweenPosition(UDim2.new(0, -122, 0, 90), 'Out', 'Quad', 0.8, false)
	wait()
	btnplayers:TweenPosition(UDim2.new(0, -122, 0, 140), 'Out', 'Quad', 0.8, false)
	wait()
	btnvehicles:TweenPosition(UDim2.new(0, -122, 0, 190), 'Out', 'Quad', 0.8, false)
	wait()
	btnserver:TweenPosition(UDim2.new(0, -122, 0, 240), 'Out', 'Quad', 0.8, false)
	wait()

	if openmem == 1 then
		modframe.Visible = true
	elseif openmem == 2 then
		spawningframe.Visible = true
	elseif openmem == 3 then
		playersframe.Visible = true
	elseif openmem == 4 then
		vehiclesframe.Visible = true
	elseif openmem == 5 then
		serverframe.Visible = true
	end	
	opening = false
end

function close()
	openclose.TextSize = 55
	openclose.Text = "+"
	mainframe:TweenSize(UDim2.new(0, 139, 0, 33), 'Out', 'Quad', 0.5, false)
	dragbarBACKGROUND:TweenSize(UDim2.new(0, 139, 0, 34), 'Out', 'Quad', 0.5, false)
	dragbarRED:TweenSize(UDim2.new(0, 139, 0, 19), 'Out', 'Quad', 0.5, false)
	dragbarWHITE:TweenSize(UDim2.new(0, 139, 0, 19), 'Out', 'Quad', 0.5, false)
	openclose:TweenPosition(UDim2.new(0, 96, 0, 3), 'Out', 'Quad', 0.5, false)
	
	modframe.Visible = false
	spawningframe.Visible = false
	playersframe.Visible = false
	vehiclesframe.Visible = false
	serverframe.Visible = false
	
	btnmods:TweenPosition(UDim2.new(0, -2000, 0, 40), 'Out', 'Quad', 0.8, false)
	wait()
	btnspawning:TweenPosition(UDim2.new(0, -2000, 0, 90), 'Out', 'Quad', 0.8, false)
	wait()
	btnplayers:TweenPosition(UDim2.new(0, -2000, 0, 140), 'Out', 'Quad', 0.8, false)
	wait()
	btnvehicles:TweenPosition(UDim2.new(0, -2000, 0, 190), 'Out', 'Quad', 0.8, false)
	wait()
	btnserver:TweenPosition(UDim2.new(0, -2000, 0, 240), 'Out', 'Quad', 0.8, false)
	wait(1)
	btnmods.Visible = false
	btnspawning.Visible = false
	btnplayers.Visible = false
	btnvehicles.Visible = false
	btnserver.Visible = false
	closing = false
end

openclose.MouseButton1Click:connect(function()
	if openclose.Text == "-" and opening ~= true then
		closing = true
		close()
	elseif openclose.Text == "+" and closing ~= true then
		opening = true
		open()
	end
end)

btnmods.MouseButton1Click:connect(function()
	openmem = 1
	btnmods.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
	btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
	btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
	btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
	btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
	modframe.Visible = true
	spawningframe.Visible = false
	playersframe.Visible = false
	vehiclesframe.Visible = false
	serverframe.Visible = false
end)

btnspawning.MouseButton1Click:connect(function()
	openmem = 2
	btnmods.TextColor3 = Color3.new(0.839216, 0, 0)
	btnspawning.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
	btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
	btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
	btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
	modframe.Visible = false
	spawningframe.Visible = true
	playersframe.Visible = false
	vehiclesframe.Visible = false
	serverframe.Visible = false
end)

btnplayers.MouseButton1Click:connect(function()
	openmem = 3
	btnmods.TextColor3 = Color3.new(0.839216, 0, 0)
	btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
	btnplayers.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
	btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
	btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
	modframe.Visible = false
	spawningframe.Visible = false
	playersframe.Visible = true
	vehiclesframe.Visible = false
	serverframe.Visible = false
end)

btnvehicles.MouseButton1Click:connect(function()
	openmem = 4
	btnmods.TextColor3 = Color3.new(0.839216, 0, 0)
	btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
	btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
	btnvehicles.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
	btnserver.TextColor3 = Color3.new(0.839216, 0, 0)
	modframe.Visible = false
	spawningframe.Visible = false
	playersframe.Visible = false
	vehiclesframe.Visible = true
	serverframe.Visible = false
end)

btnserver.MouseButton1Click:connect(function()
	openmem = 5
	btnmods.TextColor3 = Color3.new(0.839216, 0, 0)
	btnspawning.TextColor3 = Color3.new(0.839216, 0, 0)
	btnplayers.TextColor3 = Color3.new(0.839216, 0, 0)
	btnvehicles.TextColor3 = Color3.new(0.839216, 0, 0)
	btnserver.TextColor3 = Color3.new(0.839216, 0.839216, 0.839216)
	modframe.Visible = false
	spawningframe.Visible = false
	playersframe.Visible = false
	vehiclesframe.Visible = false
	serverframe.Visible = true
end)

--Maddness Begins
function getNextOpenSlot()
	for L_96_forvar1 = 1, 20 do
		if not L_2_.playerstats.slots["slot"..L_96_forvar1]:FindFirstChild("ObjectID") then
			return L_96_forvar1
		end
	end
end;

function getItemID(L_97_arg1)
	if game.Lighting:FindFirstChild(L_97_arg1) then
		local L_98_ = game.Lighting:FindFirstChild(L_97_arg1).ObjectID.Value;
		return L_98_
	else
		return nil
	end
end;

function findItemFromPlayer(L_99_arg1)
	if getItemID(L_99_arg1) then
		for L_100_forvar1, L_101_forvar2 in pairs(game.Players:GetPlayers()) do
			for L_102_forvar1 = 1, 20 do
				local L_103_ = L_101_forvar2.playerstats.slots["slot"..L_102_forvar1]
				if L_103_:FindFirstChild("ObjectID") then
					if L_103_.ObjectID.Value == getItemID(L_99_arg1) then
						return L_103_
					end
				end;
				local L_104_ = L_2_.playerstats.slots.slotprimary;
				local L_105_ = L_2_.playerstats.slots.slotsecondary;
				if L_104_:FindFirstChild("ObjectID") and L_104_.ObjectID == getItemID(L_99_arg1) then
					return L_104_
				elseif L_105_:FindFirstChild("ObjectID") and L_105_.ObjectID == getItemID(L_99_arg1) then
					return L_105_
				else
					return nil
				end
			end
		end
	end
end;

--Mods

ItemCodes = {
["AK-104"] = 1037, ["WindscreenGlass"] = 184, ["WaterBottle"] = 209, ["Watch"] = 3001, ["VehicleJack"] = 3016,
["Vegetables"] = 214, ["VS50"] = 256, ["Uzi"] = 2015, ["Ushanka"] = 7014, ["USP45Ammo"] = 26, ["USP45"] = 2007,
["Twinkies"] = 212, ["Tuna"] = 4, ["TrinityBeret"] = 7015, ["TomatoSoup"] = 215, ["TM46"] = 257,
["TEC9Ammo32"] = 57, ["TEC9Ammo20"] = 56, ["TEC9Ammo"] = 20, ["TEC-9"] = 2005, ["SurvivalPackTan"] = 4009,
["SurvivalPackGrey"] = 4010, ["SurvivalPackGreen"] = 4011, ["SurvivalPackBrown"] = 4012, ["Suppressor9"] = 9007,
["Suppressor762"] = 9010, ["Suppressor556"] = 9009, ["Suppressor545"] = 9011, ["Suppressor45"] = 9008,
["Spam"] = 6, ["SodaSprite"] = 205, ["SodaRoot"] = 207, ["SodaPepsi"] = 7, ["SodaPepper"] = 9,
["SodaMoxie"] = 208, ["SodaDew"] = 202, ["SodaCrush"] = 201, ["SodaCoke"] = 8, ["ShotgunAmmo"] = 18,
["Shotgun"] = 1002, ["ShadesGrey"] = 8005, ["ShadesBlack"] = 8001, ["ScrapMetal"] = 183, ["Sabre"] = 3014,
["SUSAT"] = 9014, ["STANAGAmmo50"] = 52, ["STANAGAmmo30"] = 51, ["STANAGAmmo100"] = 53, ["SKSAmmo"] = 45,
["SKS"] = 1018, ["SCAR-L"] = 1022, ["RoadFlare"] = 251, ["RevolverAmmo"] = 25, ["Revolver"] = 2006,
["ReinforcedWheel"] = 189, ["Reflex"] = 9003, ["RedChemlight"] = 3020, ["RedBeret"] = 7013, ["RawMeat"] = 220,
["Ranger"] = 7003, ["RamboClothingTop"] = 5003, ["RamboClothingBottom"] = 6003, ["Radio"] = 3018,
["RPK"] = 1034, ["Pringles"] = 204, ["PilotGreen"] = 7010, ["PilotBlack"] = 7009, ["Pasta"] = 5,
["Painkillers"] = 12, ["PaddedClothingTop"] = 5002, ["PaddedClothingBottom"] = 6002, ["PPSHAmmo"] = 46,
["PPSH"] = 1019, ["PP19Ammo64"] = 58, ["SmallCrate"] = 38, ["OmniLight"] = 3015, ["OTs-14"] = 1036,
["NagantAmmo"] = 17, ["Mosin-Nagant"] = 1001, ["Model459Ammo14"] = 59, ["Model 459"] = 2013, ["Mk48Ammo"] = 23,
["Mk 48"] = 1005, ["Mk 23"] = 2018, ["Mk 17"] = 1031, ["MilitaryPackGrime"] = 4013, ["MilitaryPackGrey"] = 4015,
["MilitaryPackGreen"] = 4014, ["MilitaryPackBlack"] = 4016, ["MaverickAmmo"] = 27, ["Maverick"] = 1010,
["Material6"] = 36, ["Material5"] = 35, ["Material4"] = 34, ["Material3"] = 33, ["Material2"] = 32,
["Material1"] = 31, ["Matches"] = 3005, ["MaskSpecOps"] = 8009, ["MaskPhantom"] = 8013, ["MaskMime"] = 8008,
["MaskMercenary"] = 8007, ["MaskHockey"] = 8012, ["Map"] = 3003, ["MakarovAmmo"] = 16, ["Makarov"] = 2003,
["MRE"] = 10, ["MP5Ammo"] = 29, ["MP5"] = 1012, ["M9Ammo32"] = 55, ["M9Ammo17"] = 54, ["M9Ammo"] = 19,
["M93R"] = 2016, ["M9"] = 2004, ["M870Ammo"] = 28, ["M870"] = 1011, ["M4A1"] = 1004, -- ["M4A1Ammo"] = 22,
["M3Ammo30"] = 60, ["M3"] = 1028, ["M249Ammo100"] = 61, ["M249"] = 1024, ["M1911Ammo"] = 15, ["M1911"] = 2002,
["M14"] = 1016, ["M1014"] = 1027, ["M14Ammo50"] = 64, ["M14Ammo30"] = 63, ["M14Ammo20"] = 62, 
["M1 Garand"] = 1006, ["Lemonade"] = 206, ["Laser"] = 9006, ["Kobra"] = 9004, ["Knife"] = 3013,
["KethArmorTop"] = 5011, ["KethArmorBottom"] = 6011, ["JerryCanEmpty"] = 186, ["JerryCan"] = 185,
["HornRimmed"] = 8006, ["Holo"] = 9002, ["HikingPackWhite"] = 4006, ["HikingPackOrange"] = 4005,
["HikingPackBrown"] = 4008, ["HikingPackBlue"] = 4007, ["Hatchet"] = 3011, ["HK417"] = 1033, ["HK21"] = 1032,
["GusArmorTop"] = 5010, ["GusArmorBottom"] = 6010, ["Grip"] = 9005, ["GreenChemlight"] = 3021,
["GarandAmmo"] = 24, ["GPS"] = 3006, ["G37"] = 2017, ["G36K"] = 1023, ["G3"] = 1030, -- ["G18Ammo"] = 41,
["G18"] = 2011, ["FuelTank"] = 182, ["Floodlight"] = 37, ["FlashlightSurvival"] = 3009,
["FlashlightOld"] = 3008, ["FlashlightMilitary"] = 3010, ["FlashlightAttachment"] = 9012, ["Firewood"] = 250,
["Firefighter"] = 8004, ["FedorovAmmo"] = 44, ["Fedorov"] = 1017, ["Fedora"] = 7004, ["FannyPackWhite"] = 4002,
["FannyPackTan"] = 4001, ["FannyPackPurple"] = 4004, ["FannyPackBlue"] = 4003, ["FAL"] = 1029,
["Eyepatch"] = 8003, ["Entrencher"] = 3004, ["EngineParts"] = 181, ["EnfieldAmmo"] = 42, ["Enfield"] = 1015,
["Detonator"] = 3017, ["Crowbar"] = 3012, ["CowlGreen"] = 7002, ["CowlBlack"] = 7001, ["Cowboy"] = 7012,
["CookedMeat"] = 221, ["Compass"] = 3002, ["ClothingTopFalse"] = 5000, ["ClothingBottomFalse"] = 6000,
["CivilianClothingTop"] = 5001, ["CivilianClothingBottom"] = 6001, ["ChocolateBar"] = 211, ["ChipsAhoy"] = 213,
["ChickenSoup"] = 216, ["CheezIts"] = 203, ["CarWheel"] = 180, ["CamoWoodlandsTop"] = 5007,
["CamoWoodlandsBottom"] = 6007, ["CamoUrbanTop"] = 5005, ["CamoUrbanBottom"] = 6005, ["CamoSpecialTop"] = 5009,
["CamoSpecialBottom"] = 6009, ["CamoSnowTop"] = 5008, ["CamoSnowBottom"] = 6008, ["CamoJungleTop"] = 5006,
["CamoJungleBottom"] = 6006, ["CamoDesertTop"] = 5004, ["CamoDesertBottom"] = 6004, ["CZ75Ammo"] = 40,
["CZ75"] = 2010, ["CCO"] = 9001, ["CBJ-MS"] = 2014, ["C4"] = 255, ["BrimmedBrown"] = 7007,
["BrimmedBlack"] = 7008, ["Bowler"] = 7005, ["BlueChemlight"] = 3022, ["BloodBag"] = 11, ["Binoculars"] = 3007,
["Biker"] = 7006, ["BeefStew"] = 217, ["BeefJerky"] = 210, ["Beans"] = 3, ["Beanie"] = 7011,
["BandanaSkull"] = 8014, ["BandanaRenegade"] = 8011, ["BandanaRed"] = 8010, ["BandanaBlack"] = 8002,
["BallisticUrban"] = 7018, ["BallisticSpecOps"] = 7019, ["BallisticJungle"] = 7017, ["BallisticGlass"] = 187,
["BallisticDesert"] = 7016, ["Auto-5"] = 1025, ["ArmorPlates"] = 188, ["AN-94"] = 1040, ["AKS-74U"] = 1041,
["AKM"] = 1038, ["AKAmmo75"] = 67, ["AKAmmo45"] = 66, ["AKAmmo30"] = 65, ["AK47Ammo75"] = 50,
["AK47Ammo40"] = 49, ["AK47Ammo30"] = 48, ["AK-74"] = 1039, ["AK-47"] = 1003, ["AK-12"] = 1035,
["ACOG"] = 9013, ["LargeCrate"] = 39, ["PP-19"] = 1026
}

function table_invert(t)
  local s={}
  for k,v in pairs(t) do
    s[v]=k
  end
  return s
end

local lol = table_invert(ItemCodes)

ZeroNums = {"a", "B", "i", "P", "Y", "S"}
ActualNums = {"A", "C", "d", "g", "L", "p", "s", "T", "Z"}
function FindMultipiler(Letter)
for z = 1, #ActualNums do
if ActualNums[z] == Letter then
return z
end
end
return "0"
end

function Deobfuscate(String)
local newval = ""
for d = 1, 10 do
local mult = FindMultipiler(string.sub(String, d, d))
newval = newval .. mult
end
newval = tonumber(newval)
return newval
end

modTeleport.MouseButton1Click:connect(function()
	local plr = game.Players.LocalPlayer
	hum = plr.Character.HumanoidRootPart
	mouse = plr:GetMouse()
	mouse.KeyDown:connect(function(key)
	if key == "e" then
	if mouse.Target then
	hum.CFrame = mouse.Hit+Vector3.new(0,5,0)
	end
	end
	end)
end)

modFog.MouseButton1Click:connect(function()
	game.Lighting.FogEnd = 100000
	game.Lighting.FogStart = 100000
end)

local L_54_ = Instance.new("BoolValue", Tripp)
L_54_.Name = "ESPOn"
L_54_.Value = false

modESP.MouseButton1Click:connect(function()
for i,v in pairs(game.Players:GetChildren()) do
    if v.Name ~= game.Players.LocalPlayer.Name then
        if v ~= game.Players.LocalPlayer.Character.Torso then    

    local base = Instance.new('BillboardGui', workspace.Camera)
    local esP = Instance.new('Frame', base)
    base.AlwaysOnTop = true
    base.Enabled = true
    base.Size = UDim2.new(4.5,0,6,0)
    base.Name = 'ESP'
    base.Adornee = v.Character.Torso
    base.StudsOffset = Vector3.new(0, -0.6, 0)
    esP.BackgroundColor3 = Color3.new(75, 0, 0)
    esP.BackgroundTransparency = 0.8
    esP.BorderColor3 = Color3.new(0,0,0)
    esP.BorderSizePixel = 1
    esP.Size = UDim2.new(1,0,1,0)
    local name = Instance.new('TextLabel',base)
    name.Size = UDim2.new(1,0,1,0)
    name.BackgroundTransparency = 1
    name.Position = UDim2.new(0,0,0,0)
    name.Text = v.Name
    name.TextScaled = true
        name.TextColor3 = Color3.new(255,255,255)
    name.TextXAlignment = 'Center'
    name.TextYAlignment = 'Top'
        name.Font = 'Highway'
        name.Position = UDim2.new(0,0,0,-100)
end        
    end
end
end)

modCorpse.MouseButton1Click:connect(function()
	for _, corpse in pairs(workspace:GetChildren()) do
		if corpse.Name == "Corpse" then
		corpse:MoveTo(workspace[game.Players.LocalPlayer.Name].Torso.Position + Vector3.new(math.random(-10,10),0,math.random(-10,10)))
		end
	end
end)

modRecoil.MouseButton1Click:connect(function()
	local prim = game.Players.LocalPlayer.playerstats.slots.slotprimary.ObjectID.Value
	local primid = Deobfuscate(prim)
	local itemname = lol[primid]
	game.Players.LocalPlayer.Backpack[itemname].Stats.Recoil.Value = "aaaaaaaaaA"
end)

modAimbot.MouseButton1Click:connect(function()
	ENABLED = false
PLAYER  = game.Players.LocalPlayer
MOUSE   = PLAYER:GetMouse()
CC      = game.Workspace.CurrentCamera
_G.FREE_FOR_ALL = true
_G.BIND = 50
_G.AIM_AT = 'Head' 
local player = game.Players.LocalPlayer
local track = false
		
function GetNearestPlayerToMouse()
local PLAYERS      = {}
local PLAYER_HOLD  = {}
local DISTANCES    = {}
for i, v in pairs(game.Players:GetPlayers()) do
if v ~= PLAYER then
table.insert(PLAYERS, v)
end
end
for i, v in pairs(PLAYERS) do
if _G.FREE_FOR_ALL == false then
if v and (v.Character) ~= nil and v.TeamColor ~= PLAYER.TeamColor then
local AIM = v.Character:FindFirstChild(_G.AIM_AT)
if AIM ~= nil then
local DISTANCE                 = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
local RAY                      = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
local HIT,POS                  = game.Workspace:FindPartOnRay(RAY, game.Workspace)
local DIFF                     = math.floor((POS - AIM.Position).magnitude)
PLAYER_HOLD[v.Name .. i]       = {}
PLAYER_HOLD[v.Name .. i].dist  = DISTANCE
PLAYER_HOLD[v.Name .. i].plr   = v
PLAYER_HOLD[v.Name .. i].diff  = DIFF
table.insert(DISTANCES, DIFF)
end
end
elseif _G.FREE_FOR_ALL == true then
local AIM = v.Character:FindFirstChild(_G.AIM_AT)
if AIM ~= nil then
local DISTANCE                 = (AIM.Position - game.Workspace.CurrentCamera.CoordinateFrame.p).magnitude
local RAY                      = Ray.new(game.Workspace.CurrentCamera.CoordinateFrame.p, (MOUSE.Hit.p - CC.CoordinateFrame.p).unit * DISTANCE)
local HIT,POS                  = game.Workspace:FindPartOnRay(RAY, game.Workspace)
local DIFF                     = math.floor((POS - AIM.Position).magnitude)
PLAYER_HOLD[v.Name .. i]       = {}
PLAYER_HOLD[v.Name .. i].dist  = DISTANCE
PLAYER_HOLD[v.Name .. i].plr   = v
PLAYER_HOLD[v.Name .. i].diff  = DIFF
table.insert(DISTANCES, DIFF)
end
end
end
	
if unpack(DISTANCES) == nil then
return false
end
	
local L_DISTANCE = math.floor(math.min(unpack(DISTANCES)))
if L_DISTANCE > 20 then
return false
end
	
for i, v in pairs(PLAYER_HOLD) do
if v.diff == L_DISTANCE then
return v.plr
end
	end
	return false
	end
	
	local TRACK = false
	
	
MOUSE.KeyDown:connect(function(KEY)
KEY = KEY:lower():byte()
if KEY == _G.BIND then
ENABLED = true
end
end)
MOUSE.KeyUp:connect(function(KEY)
KEY = KEY:lower():byte()
if KEY == _G.BIND then
ENABLED = false
end
end)
	
game:GetService('RunService').RenderStepped:connect(function()
if ENABLED then
local TARGET = GetNearestPlayerToMouse()
if TARGET.Name == "rsxk20" then
else

if (TARGET ~= false) then
local AIM = TARGET.Character:FindFirstChild(_G.AIM_AT)
if AIM then
CC.CoordinateFrame = CFrame.new(CC.CoordinateFrame.p, AIM.CFrame.p)
end
end
end
end
end)
end)

local C4On = false
local Plr = game.Players.LocalPlayer
local material = game.Lighting.Materials.C4Placed
modC4.MouseButton1Click:connect(function()
	local pos = Plr.Character.Torso.Position
if C4On == false then
C4On = true
modC4.Text = "C4 Walk: ON"
modC4.TextColor3 = Color3.new(0, 0.486275, 0.054902)
repeat
game.Workspace.Remote.PlaceC4:FireServer(material, pos, true)
wait()
until C4On == false
elseif C4On == true then
C4On = false
modC4.Text = "C4 Walk: OFF"
modC4.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
end
end)

local Stamina = true
modStamina.MouseButton1Click:connect(function()
	Stamina = true
	while wait() do
		if Stamina == true then
			game.Players.LocalPlayer.Backpack.GlobalFunctions.Stamina.Value = 100
		end
	end
end)

modHunger.MouseButton1Click:connect(function()
plr = game.Players.LocalPlayer.playerstats
game.Players.LocalPlayer.playerstats.Thirst.Value = math.huge
game.Players.LocalPlayer.playerstats.Hunger.Value = math.huge
end)

modGod.MouseButton1Click:connect(function()
game.Workspace.Remote.AddDamageSelf:FireServer(game.Players.LocalPlayer.Character.Humanoid, math.huge)
end)

local PlayerSelect = Instance.new("TextBox")

local esp = false
local player = game.Players.LocalPlayer
modESP2.MouseButton1Click:connect(function()
	if esp == false then -- forgot esp lol
esp = true
modESP2.Text = "Name ESP: ON"
modESP2.TextColor3 = Color3.new(0, 0.486275, 0.054902)
for get,nplayer in ipairs(game.Players:GetPlayers()) do
if nplayer.Name == player.Name then
else
local BGUI = Instance.new('BillboardGui', workspace.CurrentCamera)
BGUI.Name = 'BGui'
local BGUIFrame = Instance.new('Frame', BGUI)
BGUIFrame.Name = 'BGUIFrame'
local BGUIName = Instance.new('TextLabel', BGUIFrame)
BGUIName.Name = 'BGUIName'
BGUI.AlwaysOnTop = true
BGUI.Enabled = true
BGUI.Size = UDim2.new(0,60,0,15)
BGUI.Adornee = nplayer.Character.Head
BGUIFrame.BackgroundTransparency = 1
BGUIFrame.Size = UDim2.new(1,0,1,0)
BGUIName.Size = UDim2.new(1,0,1,0)
BGUIName.BackgroundColor3 = Color3.new(0, 0.666667, 1)
BGUIName.Text = nplayer.Name
BGUIName.TextColor3 = Color3.new(255, 255,255)
BGUIName.TextStrokeColor3 = Color3.new(0, 0, 0)
BGUIName.TextStrokeTransparency = 0
BGUIName.Font = "Cartoon"
BGUIName.TextScaled = true
BGUIName.TextWrapped = true
BGUIName.MouseEnter:connect(function()
PlayerSelect.Text = game.Players.LocalPlayer.Name
BGUIName.MouseLeave:connect(function()
PlayerSelect.Text = ""
end)
end)
end
local nvGUI = Instance.new('ScreenGui', player.PlayerGui)
nvGUI.Name = "NVG"
local nvMAIN = Instance.new('TextLabel', nvGUI)
nvMAIN.Name = "Main"
nvMAIN.BackgroundTransparency = 1
for i,v in pairs(game.Players:GetChildren()) do
if v and v.Character and not (v.Name == '' .. player.Name) then
for i,v in pairs(v.Character:GetChildren()) do
if v:IsA('BasePart') then
local nvBox = Instance.new('SelectionBox', nvMAIN)
nvBox.Adornee = v
nvBox.Color = BrickColor.new('Blue')
end
end
end
end
end
elseif esp == true then
esp = false
modESP2.Text = "Name ESP: OFF"
modESP2.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
for i,v in ipairs(game.Workspace.CurrentCamera:GetChildren()) do
if v.Name == 'BGui' then
v:Destroy()
end
end
for i,v in pairs(player.PlayerGui:GetChildren()) do
if v.Name == "NVG" and v:IsA('ScreenGui') then
v:Destroy()
end
end
end
end)

modNoclip.MouseButton1Click:connect(function()
noclip = false
game:GetService('RunService').Stepped:connect(function()
if noclip then
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
end
end)
plr = game.Players.LocalPlayer
mouse = plr:GetMouse()
mouse.KeyDown:connect(function(key)

if key == "j" then
noclip = not noclip
game.Players.LocalPlayer.Character.Humanoid:ChangeState(11)
end
end)
end)

local vehiclepos = L_2_.Character.HumanoidRootPart.Position
vehicleTeleport.MouseButton1Click:connect(function()
game.Workspace.Remote.AddDamageSelf:FireServer(game.Players.LocalPlayer.Character.Humanoid, math.huge)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(vehiclepos+Vector3.new(0,15,0))
end)

--Spawning
function spawnItem(L_106_, amount)
	for xvar1 = 1, amount do 
		local L_108_ = game.Lighting.LootDrops:FindFirstChild(L_106_)
		local L_109_ = L_108_:Clone()
		L_109_.Parent = workspace;
		L_109_:SetPrimaryPartCFrame(CFrame.new(L_2_.Character.Head.Position + Vector3.new(math.random(-5, 5), 0, math.random(-5, 5))))
	end
end

spawnFalKit.MouseButton1Click:connect(function()
	spawnItem("FAL", 1)
	spawnItem("M14Ammo50", 5)
	spawnItem("ACOG", 1)
	spawnItem("Suppressor762", 1)
	spawnItem("Grip", 1)
	spawnItem("MilitaryPackBlack", 1)
end)

spawnNavigation.MouseButton1Click:connect(function()
	spawnItem("Map", 1)
	spawnItem("GPS", 1)
	spawnItem("Compass", 1)
end)

btnSpawn.MouseButton1Click:connect(function()
	local L_106_ = txtboxSearch.Text;
	if workspace.SpawnLoot:FindFirstChild(L_106_) then
		workspace.Remote.GrabItem:FireServer(L_2_.playerstats.slots["slot"..getNextOpenSlot()], workspace.SpawnLoot:FindFirstChild(L_106_), workspace.SpawnLoot:FindFirstChild(L_106_).ObjectID)
	elseif workspace.DropLoot:FindFirstChild(L_106_) then
		workspace.Remote.GrabItem:FireServer(L_2_.playerstats.slots["slot"..getNextOpenSlot()], workspace.DropLoot:FindFirstChild(L_106_), workspace.DropLoot:FindFirstChild(L_106_).ObjectID)
	elseif findItemFromPlayer(L_106_) then
		local L_107_ = findItemFromPlayer(L_106_)
		workspace.Remote.DropItem(L_107_, L_107_.ObjectID.Value)
	else
		local L_108_ = game.Lighting.LootDrops:FindFirstChild(L_106_)
		if not L_108_ then
			btnSpawn.Text = "Error"
			wait(2)
			btnSpawn.Text = "Spawn"
			return
		end;
		local L_109_ = L_108_:Clone()
		L_109_.Parent = workspace;
		L_109_:SetPrimaryPartCFrame(CFrame.new(L_2_.Character.Head.Position + Vector3.new(math.random(-5, 5), 0, math.random(-5, 5))))
	end
end)

function alphabetize(L_110_arg1, L_111_arg2)
	local L_112_ = L_110_arg1.Name:lower()
	local L_113_ = L_112_:sub(1, 1):byte()
	local L_114_ = L_111_arg2.Name:lower()
	local L_115_ = L_114_:sub(1, 1):byte()
	if L_113_ < L_115_ then
		return true
	else
		return false
	end
end;

local L_56_ = game.Lighting.LootDrops:GetChildren()
local L_57_ = {}
for L_84_forvar1 = 1, #L_56_ do
	if L_56_[L_84_forvar1]:IsA("Model") then
		table.insert(L_57_, L_56_[L_84_forvar1].Name)
	end
end;

function getMatches(L_85_arg1)
	local L_86_ = {}
	for L_87_forvar1 = 1, #L_56_ do
		local L_88_ = L_56_[L_87_forvar1].Name:lower()
		if L_88_:find(L_85_arg1:lower()) then
			table.insert(L_86_, L_56_[L_87_forvar1])
		end
	end;
	table.sort(L_86_, alphabetize)
	return L_86_
end;

txtboxSearch.Changed:connect(function()
	for L_91_forvar1, L_92_forvar2 in ipairs(scrollingItems:GetChildren()) do
		L_92_forvar2:Destroy()
	end;
	local L_89_ = txtboxSearch.Text;
	local L_90_ = getMatches(L_89_)
	if L_90_ then
		scrollingItems.Visible = true
		scrollingItems.CanvasSize = UDim2.new(0, 225, 0, (#L_90_ * 25) - 25)
		for L_93_forvar1 = 1, #L_90_ do
			local L_94_ = L_90_[L_93_forvar1].Name;
			local L_95_ = Instance.new("TextButton", scrollingItems)
			L_95_.Font = Enum.Font.ArialBold;
			L_95_.FontSize = Enum.FontSize.Size14;
			L_95_.Style = Enum.ButtonStyle.RobloxRoundButton;
			L_95_.Text = L_94_;
			L_95_.TextColor3 = Color3.new(255, 255, 255)
			L_95_.TextXAlignment = Enum.TextXAlignment.Left;
			L_95_.Name = L_94_;
			L_95_.Position = UDim2.new(0, 0, 0, (L_93_forvar1 * 25) - 25)
			L_95_.Size = UDim2.new(0, 210, 0, 25)
			L_95_.MouseButton1Click:connect(function()
				txtboxSearch.Text = L_95_.Text
			end)
		end
	end;
	if not L_90_ then
		scrollingItems.Visible = false
	end
end)

wait(1)
txtboxSearch.Text = "{SEARCH ITEM}"

--Players
local globalplr = "nil"
local spec = false

local L_58_ = Instance.new("ObjectValue", frmPlayers)
L_58_.Name = "SelectedPlayer"
local L_59_ = game.Players:GetPlayers()
table.sort(L_59_, alphabetize)
for L_116_forvar1 = 1, #L_59_ do
	local L_117_ = L_59_[L_116_forvar1]
	local L_118_ = Instance.new("TextButton", scrollingPlayers)
	L_118_.Name = L_117_.Name;
	L_118_.Text = L_117_.Name;
	L_118_.Size = UDim2.new(0, 285, 0, 25)
	L_118_.Font = Enum.Font.ArialBold;
	L_118_.FontSize = Enum.FontSize.Size14;
	L_118_.TextColor3 = Color3.new(255, 255, 255)
	L_118_.Style = Enum.ButtonStyle.RobloxRoundButton;
	L_118_.Position = UDim2.new(0, 0, 0, (L_116_forvar1 * 25) - 25)
	scrollingPlayers.CanvasSize = UDim2.new(0, 0, 0, (#L_59_ * 25) - 25)
	L_118_.MouseButton1Click:connect(function()
		L_58_.Value = L_117_;
		labelSelectedPlayers.Text = "Selected: "..L_117_.Name
		globalplr = L_117_.Name
	if spec == true then
		print(globalplr)
		game.Workspace.CurrentCamera.CameraSubject = game.Players[globalplr].Character.Humanoid
	else
		
	end
	end)
end;

function update()
	for L_120_forvar1, L_121_forvar2 in ipairs(scrollingPlayers:GetChildren()) do
		if L_121_forvar2:IsA("TextButton") then
			L_121_forvar2:Destroy()
		end
	end;
	local L_119_ = game.Players:GetPlayers()
	table.sort(L_119_, alphabetize)
	for L_122_forvar1 = 1, #L_119_ do
		local L_123_ = L_119_[L_122_forvar1]
		local L_124_ = Instance.new("TextButton", scrollingPlayers)
		L_124_.Text = L_123_.Name;
		L_124_.Size = UDim2.new(0, 285, 0, 25)
		L_124_.Font = Enum.Font.ArialBold;
		L_124_.FontSize = Enum.FontSize.Size14;
		L_124_.TextColor3 = Color3.new(255, 255, 255)
		L_124_.Style = Enum.ButtonStyle.RobloxRoundButton;
		L_124_.Position = UDim2.new(0, 0, 0, (L_122_forvar1 * 25) - 25)
		scrollingPlayers.CanvasSize = UDim2.new(0, 0, 0, (#L_119_ * 25) - 25)
		L_124_.MouseButton1Click:connect(function()
			L_58_.Value = L_123_;
			labelSelectedPlayers.Text = "Selected: "..L_123_.Name
			globalplr = L_123_.Name
	if spec == true then
		print(globalplr)
		game.Workspace.CurrentCamera.CameraSubject = game.Players[globalplr].Character.Humanoid
	else
		
	end
		end)
	end
end;

function getGun()
	local L_66_ = L_2_.Backpack:GetChildren()
	for L_67_forvar1 = 1, #L_66_ do
		if L_66_[L_67_forvar1]:IsA("Model") and L_66_[L_67_forvar1]:FindFirstChild("Shooter") then
			return L_66_[L_67_forvar1]
		end
	end;
	return nil
end;

playerKillAll.MouseButton1Click:connect(function()
	local L_68_ = getGun()
	if not L_68_ then
		playerKillAll.Text = "Error"
		wait()
		playerKillAll.Text = "Kill All"
		return
	end;
	for L_69_forvar1, L_70_forvar2 in ipairs(game.Players:GetPlayers()) do
		if L_68_ and L_70_forvar2.Character and L_70_forvar2 ~= L_2_ then
			for L_71_forvar1 = 1, 6 do
				workspace.Remote.DoHitLogic:FireServer(L_68_, L_70_forvar2.Character.Head)
			end
		end
	end
end)

playerStealAllG.MouseButton1Click:connect(function()
	local L_77_ = game.Players:GetPlayers()
	for L_78_forvar1 = 1, #L_77_ do
		local L_79_ = L_77_[L_78_forvar1]
		if L_79_.playerstats.slots.slotprimary:FindFirstChild("ObjectID") then
			workspace.Remote.DropItem:FireServer(L_79_.playerstats.slots.slotprimary, L_79_.playerstats.slots.slotprimary.ObjectID)
		end;
		if L_79_.playerstats.slots.slotsecondary:FindFirstChild("ObjectID") then
			workspace.Remote.DropItem:FireServer(L_79_.playerstats.slots.slotsecondary, L_79_.playerstats.slots.slotsecondary.ObjectID)
		end
	end
end)

playerStealAllI.MouseButton1Click:connect(function()
	local L_72_ = game.Players:GetPlayers()
	for L_73_forvar1 = 1, #L_72_ do
		local L_74_ = L_72_[L_73_forvar1]
		if L_74_ ~= L_2_ then
			for L_75_forvar1 = 1, 20 do
				if L_74_.playerstats.slots:FindFirstChild("slot"..L_75_forvar1):FindFirstChild("ObjectID") then
					workspace.Remote.DropItem:FireServer(L_74_.playerstats.slots:FindFirstChild("slot"..L_75_forvar1), L_74_.playerstats.slots:FindFirstChild("slot"..L_75_forvar1).ObjectID)
				end
			end;
			if L_74_.playerstats.slots.slotprimary:FindFirstChild("ObjectID") then
				workspace.Remote.DropItem:FireServer(L_74_.playerstats.slots.slotprimary, L_74_.playerstats.slots.slotprimary.ObjectID)
			end;
			if L_74_.playerstats.slots.slotsecondary:FindFirstChild("ObjectID") then
				workspace.Remote.DropItem:FireServer(L_74_.playerstats.slots.slotsecondary, L_74_.playerstats.slots.slotsecondary.ObjectID)
			end;
			for L_76_forvar1 = 1, 7 do
				if L_74_.playerstats.utilityslots["slot"..L_76_forvar1]:FindFirstChild("ObjectID") then
					workspace.Remote.DropItem:FireServer(L_74_.playerstats.utilityslots["slot"..L_76_forvar1], L_74_.playerstats.utilityslots["slot"..L_76_forvar1].ObjectID)
				end
			end
		end
	end
end)

game.Players.PlayerAdded:connect(update)
game.Players.PlayerRemoving:connect(update)

playerKill.MouseButton1Click:connect(function()
	local L_125_ = getGun()
	if not L_125_ or not L_58_.Value then
		playerKill.Text = "Error"
		wait(2)
		playerKill.Text = "Kill"
		return
	end;
	for L_126_forvar1 = 1, 10 do
		workspace.Remote.DoHitLogic:FireServer(L_125_, L_58_.Value.Character.Head)
	end
end)

playerStealGuns.MouseButton1Click:connect(function()
	local L_130_ = L_58_.Value;
	if not L_58_.Value then
		playerStealGuns.Text = "Error"
		wait(2)
		playerStealGuns.Text = "Steal Guns"
		return
	end;
	if L_130_.playerstats.slots.slotprimary:FindFirstChild("ObjectID") then
		workspace.Remote.DropItem:FireServer(L_130_.playerstats.slots.slotprimary, L_130_.playerstats.slots.slotprimary.ObjectID)
	end;
	if L_130_.playerstats.slots.slotsecondary:FindFirstChild("ObjectID") then
		workspace.Remote.DropItem:FireServer(L_130_.playerstats.slots.slotsecondary, L_130_.playerstats.slots.slotsecondary.ObjectID)
	end
end)

playerStealItems.MouseButton1Click:connect(function()
	local L_127_ = L_58_.Value;
	if not L_58_.Value then
		playerStealItems.Text = "Error"
		wait(2)
		playerStealItems.Text = "Steal Items"
		return
	end;
	for L_128_forvar1 = 1, 20 do
		if L_127_.playerstats.slots:FindFirstChild("slot"..L_128_forvar1):FindFirstChild("ObjectID") then
			workspace.Remote.DropItem:FireServer(L_127_.playerstats.slots:FindFirstChild("slot"..L_128_forvar1), L_127_.playerstats.slots:FindFirstChild("slot"..L_128_forvar1).ObjectID)
		end;
		if L_127_.playerstats.slots.slotprimary:FindFirstChild("ObjectID") then
			workspace.Remote.DropItem:FireServer(L_127_.playerstats.slots.slotprimary, L_127_.playerstats.slots.slotprimary.ObjectID)
		end;
		if L_127_.playerstats.slots.slotsecondary:FindFirstChild("ObjectID") then
			workspace.Remote.DropItem:FireServer(L_127_.playerstats.slots.slotsecondary, L_127_.playerstats.slots.slotsecondary.ObjectID)
		end
	end;
	for L_129_forvar1 = 1, 7 do
		if L_127_.playerstats.utilityslots["slot"..L_129_forvar1]:FindFirstChild("ObjectID") then
			workspace.Remote.DropItem:FireServer(L_127_.playerstats.utilityslots["slot"..L_129_forvar1], L_127_.playerstats.utilityslots["slot"..L_129_forvar1].ObjectID)
		end
	end
end)

playerSpectate.MouseButton1Click:connect(function()
if spec == false then
	spec = true
	playerSpectate.Text = "Spectate: ON"
	playerSpectate.TextColor3 = Color3.new(0, 0.486275, 0.054902)
elseif globalplr == "nil" then
else
	spec = false
	playerSpectate.Text = "Spectate: OFF"
	playerSpectate.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
	game.Workspace.CurrentCamera.CameraSubject = L_2_.Character.Humanoid
end
end)

playerTeleport.MouseButton1Click:connect(function()
if spec == true then
	spec = false
	playerSpectate.Text = "Spectate: OFF"
	playerSpectate.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
	game.Workspace.CurrentCamera.CameraSubject = L_2_.Character.Humanoid
end

o = globalplr
game.Workspace.Remote.AddDamageSelf:FireServer(game.Players.LocalPlayer.Character.Humanoid, math.huge)
game.Players.LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(game.Players[o].Character.HumanoidRootPart.Position)
end)

--Vehicles

local L_60_ = Instance.new("ObjectValue", Tripp)
L_60_.Name = "SelectedVehicle"
function getVehicles()
	local L_163_ = game.Workspace.Vehicles:GetChildren()
	local L_164_ = {}
	for L_165_forvar1 = 1, #L_163_ do
		if L_163_[L_165_forvar1].Name ~= "Holder" and L_163_[L_165_forvar1].Name ~= "VehicleWreck" then
			table.insert(L_164_, L_163_[L_165_forvar1])
		end
	end;
	table.sort(L_164_, alphabetize)
	return L_164_
end;

local L_61_ = getVehicles()
for L_166_forvar1 = 1, #L_61_ do
	local L_167_ = L_61_[L_166_forvar1]
	local L_168_ = Instance.new("TextButton", scrollingVehicles)
	L_168_.Name = L_167_.Name;
	L_168_.Text = L_167_.Name;
	L_168_.Size = UDim2.new(0, 210, 0, 25)
	L_168_.Font = Enum.Font.ArialBold;
	L_168_.FontSize = Enum.FontSize.Size14;
	L_168_.TextColor3 = Color3.new(255, 255, 255)
	L_168_.Style = Enum.ButtonStyle.RobloxRoundButton;
	L_168_.Position = UDim2.new(0, 0, 0, (L_166_forvar1 * 25) - 25)
	scrollingVehicles.CanvasSize = UDim2.new(0, 0, 0, (#L_61_ * 25))
	L_168_.MouseButton1Click:connect(function()
		L_60_.Value = L_167_;
		labelSelectedVehicle.Text = "Selected: "..L_167_.Name
		vehiclepos = L_167_.PrimaryPart.Position
	end)
end;
function updateV()
	for L_170_forvar1, L_171_forvar2 in pairs(scrollingVehicles:GetChildren()) do
		L_171_forvar2:Destroy()
	end;
	local L_169_ = getVehicles()
	for L_172_forvar1 = 1, #L_169_ do
		local L_173_ = L_169_[L_172_forvar1]
		local L_174_ = Instance.new("TextButton", scrollingVehicles)
		L_174_.Name = L_173_.Name;
		L_174_.Text = L_173_.Name;
		L_174_.Size = UDim2.new(0, 210, 0, 25)
		L_174_.Font = Enum.Font.ArialBold;
		L_174_.FontSize = Enum.FontSize.Size14;
		L_174_.TextColor3 = Color3.new(255, 255, 255)
		L_174_.Style = Enum.ButtonStyle.RobloxRoundButton;
		L_174_.Position = UDim2.new(0, 0, 0, (L_172_forvar1 * 25) - 25)
		scrollingVehicles.CanvasSize = UDim2.new(0, 0, 0, (#L_169_ * 25))
		L_174_.MouseButton1Click:connect(function()
			L_60_.Value = L_173_;
			labelSelectedVehicle.Text = "Selected: "..L_173_.Name
			vehiclepos = L_173_.PrimaryPart.Position
		end)
	end
end;

vehicleDestroyAll.MouseButton1Click:connect(function()
	local L_176_ = getVehicles()
	for L_177_forvar1 = 1, #L_176_ do
		local L_178_ = L_60_.Value;
		if L_178_ and L_178_:FindFirstChild("Stats") and L_178_.Name ~= "Bicycle" then
			L_178_.Stats.Engine.Value = 0
		end
	end
end)

vehicleDestroy.MouseButton1Click:connect(function()
	local L_175_ = L_60_.Value;
	if L_175_ and L_175_:FindFirstChild("Stats") and L_175_.Name ~= "Bicycle" then
		L_175_.Stats.Engine.Value = 0
	else
		vehicleDestroy.Text = "Error"
		wait(2)
		vehicleDestroy.Text = "Destroy"
	end
end)

vehicleSetSpeed.MouseButton1Click:connect(function()
	local L_179_ = L_60_.Value;
	if L_179_ and L_179_:FindFirstChild("Stats") and tonumber(txtboxSpeed.Text) then
		L_179_.Stats.MaxSpeed.Value = txtboxSpeed.Text;
		L_179_.Stats.MaxSpeed.Offroad.Value = txtboxSpeed.Text
	else
		vehicleSetSpeed.Text = "Error"
		wait(2)
		vehicleSetSpeed.Text = "SetSpeed"
	end
end)

vehicleESP.MouseButton1Click:connect(function()
		if not L_54_.Value then
		L_54_.Value = true
		vehicleESP.Text = "Car ESP: ON"
		vehicleESP.TextColor3 = Color3.new(0, 0.486275, 0.054902)
		local function L_141_func(L_146_arg1)
			local L_147_ = Instance.new("BillboardGui", L_2_.PlayerGui)
			L_147_.Adornee = L_146_arg1.PrimaryPart;
			L_147_.AlwaysOnTop = true
			L_147_.Enabled = true
			L_147_.Active = false
			L_147_.Size = UDim2.new(0, 25, 0, 12.5)
			local L_148_ = Instance.new("TextLabel", L_147_)
			L_148_.Size = UDim2.new(0, 25, 0, 12.5)
			L_148_.BackgroundColor3 = Color3.new(0, 255, 0)
			L_148_.BackgroundTransparency = 0.7
			L_148_.TextScaled = true
			spawn(function()
				while true do
					for L_149_forvar1 = 1, 30 do
						wait(0.1)
						L_148_.Text = math.floor((L_2_.Character.Head.Position - L_146_arg1.PrimaryPart.Position).magnitude).." m"
					end;
					L_148_.Text = L_146_arg1.Name;
					wait(3)
					if not L_54_.Value then
						break
					end
				end
			end)
		end;
		for L_152_forvar1, L_153_forvar2 in pairs(getVehicles()) do
			if L_153_forvar2 then
				L_141_func(L_153_forvar2)
			end
		end;
	else
		for L_155_forvar1, L_156_forvar2 in ipairs(L_2_.PlayerGui:GetChildren()) do
			if L_156_forvar2:IsA("BillboardGui") then
				L_156_forvar2:Destroy()
			end
		end;
		L_54_.Value = false
		vehicleESP.Text = "Car ESP: OFF"
		vehicleESP.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
	end
end)

--Server
tspamBool = false
messageSpam.MouseButton1Click:connect(function()
    if tspamBool == false then
		tspamBool = true
		messageSpam.Text = "Chat Spam: ON"
		messageSpam.TextColor3 = Color3.new(0, 0.486275, 0.054902)
    words = {tostring(messageText.Text), messageText.Text..'.'}
while tspamBool do
wait()
game.workspace.Remote.Chat:FireServer("Global", words[math.random(#words)])
end
    else
        tspamBool = false
		messageSpam.Text = "Chat Spam: OFF"
		messageSpam.TextColor3 = Color3.new(0.721569, 0, 0.0117647)
    end
        
end)

Red.MouseButton1Down:connect(function()
for i,v in pairs(game.Players:GetChildren())do
workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'Red', messageText.Text)
end
end)

Yellow.MouseButton1Down:connect(function()
for i,v in pairs(game.Players:GetChildren())do
workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'Yellow', messageText.Text)
end
end)

Green.MouseButton1Down:connect(function()
for i,v in pairs(game.Players:GetChildren())do
workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'Green', messageText.Text)
end
end)

Blue.MouseButton1Down:connect(function()
for i,v in pairs(game.Players:GetChildren())do
workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'Blue', messageText.Text)
end
end)

White.MouseButton1Down:connect(function()
for i,v in pairs(game.Players:GetChildren())do
workspace.Remote.SendMessage:FireServer(game.Players[v.Name], 'White', messageText.Text)
end
end)

https://freebitco.in/?op=home#

lua

print("Hello World!")https://freebitco.in/?op=homehttps://freebitco.in/?op=home#

Code

lua

EnablePrimaryMouseButtonEvents(true);

function OnEvent(event, arg)
	if IsKeyLockOn("numlock" )then
		if IsMouseButtonPressed(3)then
                        x, y = GetMousePosition();
			Sleep(5)

			OutputLogMessage(" Mouse is at %d, %d\n", x, y);
			Sleep(5)

			repeat	
				if IsMouseButtonPressed(1) then
					repeat
						MoveMouseTo(x, y)
						Sleep(30)
					until not IsMouseButtonPressed(1)
				end				
			until not IsMouseButtonPressed(3)
		end		
	end
end

asdf

lua

num = 9

if num == 1 then
print("yes")
    elseif num >= 3 and num <= 4 then
    print ("yes1",num)
    elseif num >= 5 and num <= 10 then
        print("yes3",num)                                          
end

thdtfjfttf

lua

print("Hello World!")

Advertisements
Loading...

We use cookies to provide and improve our services. By using our site, you consent to our Cookies Policy.