Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- LDT_Decals = LDT_Decals or {}
- LDT_Decals.Config = LDT_Decals.Config or {}
- LDT_Decals.Config.Language = "en" -- Currently there are en, de, es, nl and fr translations available.
- LDT_Decals.Config.AdminRanks = {
- ["superadmin"] = true,
- ["admin"] = true
- } -- These are the ranks that can spawn new displays, stands and scoreboards. You can add more ranks if you want to.
- LDT_Decals.Config.DefaultImage = "https://i.imgur.com/PhGIPKf.jpg" -- This is the default image that will be used if the user doesn't provide one.
- -- This is the distance in which the decals will be rendered. If the player is further away than this distance, the decals won't be rendered.
- -- This is to prevent lag and performance issues. Feel free to change this value to your liking.
- -- Maximum distance is 300 units.
- -- Minimum distance is 5 units.
- LDT_Decals.Config.RenderDistance = 300
- -- These are the colors for every element of the UI. Feel free to change them to your liking.
- LDT_Decals.Config.Red = Color(255, 63, 5)
- LDT_Decals.Config.White = Color(255,255,255)
- LDT_Decals.Config.Grey = Color(47, 54, 64)
- LDT_Decals.Config.GreySecond = Color(53, 59, 72)
- LDT_Decals.Config.Blue = Color(0, 151, 230)
- LDT_Decals.Config.ToolBlock = Color(0, 0, 0,220)
- -- These are the materials for every element of the UI. Feel free to change them to your liking.
- LDT_Decals.Materials = LDT_Decals.Materials or {}
- LDT_Decals.Materials.ToolBG = Material("ldt_decals/display_bg_small.png", "ignorez")
- LDT_Decals.Materials.XIcon = Material("ldt_decals/x.png", "noclamp smooth")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement