-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathconfig.lua
More file actions
32 lines (26 loc) · 886 Bytes
/
Copy pathconfig.lua
File metadata and controls
32 lines (26 loc) · 886 Bytes
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
Config = {}
-- Max Distance for getting player
Config.MaxDistance = 3.5
-- For selecting the player (left mouse)
Config.SelectControl = 24
-- Controls Disabled during the raycast
Config.DisabledControls = {25, 263, 140, 141, 142, 143, 200}
-- Controls for leaving the raycast
Config.ExitControl = {200, 202}
-- .ytd file in stream folder
Config.StreamFile = "targeting_marker"
-- Marker options
Config.Marker = {
textureDict = Config.StreamFile,
textureName = "logo",
rgb = {r = 255, g = 255, b = 255},
scale = {x = .5, y = .5, z = .5},
rotation = {x = 90.0, y = 0.0, z = 0.0},
direction = {x = 0.0, y = 0.0, z = 0.0},
alpha = 100,
bobUpAndDown = false,
faceCamera = true,
rotate = false,
type = 9,
zOffset = .5
}