forked from linemaster2/esp-library
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathexample.lua
More file actions
57 lines (46 loc) · 1.32 KB
/
example.lua
File metadata and controls
57 lines (46 loc) · 1.32 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
local ESP = loadstring(game:HttpGet("https://raw.githubusercontent.com/linemaster2/esp-library/main/library.lua"))();
--// Master switch
ESP.Enabled = true;
--// Enable boxes
ESP.ShowBox = true;
--// Set the box type to corner
ESP.BoxType = "Corner Box Esp";
--// Enable names
ESP.ShowName = true;
--// Enable Healhbar
ESP.ShowHealth = true;
--// Enable tracers
ESP.ShowTracer = true;
--// Enable Distance
ESP.ShowDistance = true;
--[[
Enable skeletons: (currently broken)
ESP.ShowSkeletons = true;
]]
--[[
These are all the settings
local ESP_SETTINGS = {
BoxOutlineColor = Color3.new(0, 0, 0),
BoxColor = Color3.new(1, 1, 1),
NameColor = Color3.new(1, 1, 1),
HealthOutlineColor = Color3.new(0, 0, 0),
HealthHighColor = Color3.new(0, 1, 0),
HealthLowColor = Color3.new(1, 0, 0),
CharSize = Vector2.new(4, 6),
Teamcheck = false,
WallCheck = false,
Enabled = false,
ShowBox = false,
BoxType = "2D",
ShowName = false,
ShowHealth = false,
ShowDistance = false,
ShowSkeletons = false,
ShowTracer = false,
TracerColor = Color3.new(1, 1, 1),
TracerThickness = 2,
SkeletonsColor = Color3.new(1, 1, 1),
TracerPosition = "Bottom",
}
ermm yep thats about it
]]