This repository was archived by the owner on Feb 6, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 14
Expand file tree
/
Copy pathconfig.lua
More file actions
70 lines (62 loc) · 2.08 KB
/
config.lua
File metadata and controls
70 lines (62 loc) · 2.08 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
Config = Config or {}
----------------------------------------------------------------------------------------------------
-- # BACKGROUND SECTION # --
----------------------------------------------------------------------------------------------------
-- Allows you to set the preferred background Color from a list of available options.
Config.Background = "background_projectsloth"
-- Available Options --
-- background_blue
-- background_darkblue
-- background_darkerblue
-- background_darkgreen
-- background_green
-- background_other
-- background_pink
-- background_projectsloth
-- background_red
-- background_yellow
-- Allows you to change the opactiy of the Background
Config.Opacity = 100
----------------------------------------------------------------------------------------------------
-- # HEADER and OPTIONS SECTION # --
----------------------------------------------------------------------------------------------------
Config.Header = {
-- LEFT MENU CONFIG
["TITLE"] = "Project Sloth",
["SUBTITLE"] = "This little Script was made by Jay <3",
["MAP"] = "Map",
["GAME"] = "Exit Game",
["LEAVE"] = "Return to Server List",
["QUIT"] = "Return to Desktop",
["INFO"] = "Information",
["STATS"] = "Statistics",
["SETTINGS"] = "Settings",
["GALLERY"] = "Gallery",
["KEYBIND"] = "Main Keybinds",
["EDITOR"] = "Rockstar Editor",
-- RIGHT MENU CONFIG
["SERVER_NAME"] = "Project Sloth",
["SERVER_TEXT"] = "LeSiiN is cool",
["SERVER_DISCORD"] = "YOUR DISCORD HERE"
}
--Allows you to Change the Colour ( Use this Website: https://rgbacolorpicker.com/ )
Config.RGBA = {
LINE = { -- Line over the Options
["RED"] = 159,
["GREEN"] = 183,
["BLUE"] = 16,
["ALPHA"] = 255,
},
STYLE = { -- Pause Menu Options
["RED"] = 0,
["GREEN"] = 0,
["BLUE"] = 0,
["ALPHA"] = 186,
},
WAYPOINT = { -- Waypoint
["RED"] = 164,
["GREEN"] = 76,
["BLUE"] = 242,
["ALPHA"] = 255,
},
}