Advertisement
Lukyspore

sh_config.lua

Apr 14th, 2024 (edited)
1,426
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 1.54 KB | None | 0 0
  1. LDT_Decals = LDT_Decals or {}
  2. LDT_Decals.Config = LDT_Decals.Config or {}
  3.  
  4. LDT_Decals.Config.Language = "en" -- Currently there are en, de, es, nl and fr translations available.
  5.  
  6. LDT_Decals.Config.AdminRanks = {
  7.     ["superadmin"] = true,
  8.     ["admin"] = true
  9. } -- These are the ranks that can spawn new displays, stands and scoreboards. You can add more ranks if you want to.
  10.  
  11. 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.
  12.  
  13. -- 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.
  14. -- This is to prevent lag and performance issues. Feel free to change this value to your liking.
  15. -- Maximum distance is 300 units.
  16. -- Minimum distance is 5 units.
  17. LDT_Decals.Config.RenderDistance = 300
  18.  
  19. -- These are the colors for every element of the UI. Feel free to change them to your liking.
  20. LDT_Decals.Config.Red = Color(255, 63, 5)
  21. LDT_Decals.Config.White = Color(255,255,255)
  22. LDT_Decals.Config.Grey = Color(47, 54, 64)
  23. LDT_Decals.Config.GreySecond = Color(53, 59, 72)
  24. LDT_Decals.Config.Blue = Color(0, 151, 230)
  25. LDT_Decals.Config.ToolBlock = Color(0, 0, 0,220)
  26.  
  27. -- These are the materials for every element of the UI. Feel free to change them to your liking.
  28. LDT_Decals.Materials = LDT_Decals.Materials or {}
  29. LDT_Decals.Materials.ToolBG = Material("ldt_decals/display_bg_small.png", "ignorez")
  30. LDT_Decals.Materials.XIcon = Material("ldt_decals/x.png", "noclamp smooth")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement