-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.lua
More file actions
50 lines (46 loc) · 1.76 KB
/
config.lua
File metadata and controls
50 lines (46 loc) · 1.76 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
Config = {}
Config.noclipSpeed = 1
Config.noclipShiftSpeed = 10
Config.DistanceESP = 250
Config.GodmodeOptions = {
{
['infiniteStamina'] = true,
['noRagdoll'] = true,
['godmode'] = true,
['clearPedBlood'] = true,
}
}
Config.AdutyClothing = {
['admin'] = {
['male'] = {
['tshirt_1'] = 15, ['tshirt_2'] = 0,
['torso_1'] = 287, ['torso_2'] = 6,
['decals_1'] = 0, ['decals_2'] = 0,
['arms'] = 9, ['arms_2'] = 0,
['pants_1'] = 114, ['pants_2'] = 6,
['shoes_1'] = 78, ['shoes_2'] = 6,
['helmet_1'] = -1, ['helmet_2'] = 0,
['mask_1'] = 155, ['mask_2'] = 6,
['chain_1'] = 0, ['chain_2'] = 0,
['ears_1'] = 0, ['ears_2'] = 0,
['bags_1'] = 0, ['bags_2'] = 0,
['hair_1'] = 0, ['hair_2'] = 0,
['bproof_1'] = 0, ['bproof_2'] = 0
},
['female'] = {
['tshirt_1'] = 15, ['tshirt_2'] = 0,
['torso_1'] = 287, ['torso_2'] = 4,
['decals_1'] = 0, ['decals_2'] = 0,
['arms'] = 9, ['arms_2'] = 0,
['pants_1'] = 114, ['pants_2'] = 4,
['shoes_1'] = 78, ['shoes_2'] = 4,
['helmet_1'] = -1, ['helmet_2'] = 0,
['mask_1'] = 155, ['mask_2'] = 4,
['chain_1'] = 0, ['chain_2'] = 0,
['ears_1'] = 0, ['ears_2'] = 0,
['bags_1'] = 0, ['bags_2'] = 0,
['hair_1'] = 0, ['hair_2'] = 0,
['bproof_1'] = 0, ['bproof_2'] = 0
}
}
}