Advertisement
Lukyspore

sh_config.lua

Oct 4th, 2022
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 0.77 KB | None | 0 0
  1. Vanish = Vanish or {}
  2. Vanish.Config = Vanish.Config or {}
  3.  
  4. Vanish.Config.MenuCommand = "vanish" -- This is the command for opening the Vanish/Disguise menu. This string will be prepended with "!" and "/"
  5.  
  6. Vanish.Config.Language = "en" -- Currently there is only en translations available.
  7.  
  8. Vanish.Config.AdminUsers = { -- These steamids can vanish/disguise
  9.     ["76561198050484467"] = true
  10. }
  11.  
  12.  
  13. Vanish.Config.Red = Color(255, 63, 5,255)
  14. Vanish.Config.RedSecond = Color(255, 63, 5, 200)
  15.  
  16. Vanish.Config.White = Color(255,255,255,255)
  17. Vanish.Config.WhiteHighlight = Color(200,200,200,255)
  18.  
  19. Vanish.Config.Grey = Color(47, 54, 64,255)
  20. Vanish.Config.GreySecond = Color(53, 59, 72,255)
  21. Vanish.Config.BlueSecond = Color(0, 168, 255,255)
  22. Vanish.Config.Blue = Color(0, 151, 230,255)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement