Advertisement
Guest User

test1

a guest
Dec 15th, 2018
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.95 KB | None | 0 0
  1. --[[
  2. Use usernames or userIds to add a user to a list
  3. For example; Admins={'MyBestFriend','Telamon',261} ]]
  4.  
  5. local Banned={'Guest 666'} -- For those who have wronged you, & this guy
  6.  
  7. --------------------------------------------------------------
  8. -- You DO NOT need to add yourself to any of these lists!!! --
  9. --------------------------------------------------------------
  10.  
  11. local Owners={"ZaYoshi,GiantDinosaurThing62"} -- Can set SuperAdmins, & use all the commands
  12. local SuperAdmins={} -- Can set permanent admins, & shutdown the game
  13. local Admins={} -- Can ban, crash, & set Moderators/VIP
  14. local Mods={} -- Can kick, mute, & use most commands
  15. local VIP={} -- Can use nonabusive commands only on self
  16. --
  17. -- THESE ARE THE CORE SETTINGS
  18. -- YOU WILL NOT BE ABLE TO CHANGE THEM IN-GAME
  19. local Settings={
  20. --[[
  21. Style Options
  22. ������������� ]]
  23. Flat=false; -- Enables Flat theme / Disables Aero theme
  24. ForcedColor=false; -- Forces everyone to have set color & transparency
  25. Color=Color3.new(0,0,0); -- Changes the Color of the user interface
  26. ColorTransparency=.75; -- Changes the Transparency of the user interface
  27. Chat=false; -- Enables the custom chat
  28. BubbleChat=false; -- Enables the custom bubble chat
  29. --[[
  30. Basic Settings
  31. �������������� ]]
  32. AdminCredit=true; -- Enables the credit GUI for that appears in the bottom right
  33. AutoClean=false; -- Enables automatic cleaning of hats & tools in the Workspace
  34. AutoCleanDelay=60; -- The delay between each AutoClean routine
  35. CommandBar=true; -- Enables the Command Bar | GLOBAL KEYBIND: \
  36. FunCommands=true; -- Enables fun yet unnecessary commands
  37. FreeAdmin=false; -- Set to 1-5 to grant admin powers to all, otherwise set to false
  38. PublicLogs=false; -- Allows all users to see the command & chat logs
  39. Prefix=':'; -- Character to begin a command
  40. --[[
  41. Admin Powers
  42. ������������
  43. 0 Player
  44. 1 VIP Can use nonabusive commands only on self
  45. 2 Moderator Can kick, mute, & use most commands
  46. 3 Administrator Can ban, crash, & set Moderators/VIP
  47. 4 SuperAdmin Can grant permanent powers, & shutdown the game
  48. 5 Owner Can set SuperAdmins, & use all the commands
  49. 6 Game Creator Can set owners & use all the commands
  50.  
  51. Group & VIP Admin
  52. �����������������
  53. You can set multiple Groups & Ranks to grant users admin powers
  54. GroupAdmin={
  55. [12345]={[254]=4,[253]=3};
  56. [GROUPID]={[RANK]=ADMINPOWER}
  57. };
  58. You can set multiple Assets to grant users admin powers
  59. VIPAdmin={
  60. [12345]=3;
  61. [54321]=4;
  62. [ITEMID]=ADMINPOWER;
  63. }; ]]
  64.  
  65. GroupAdmin={
  66.  
  67. };
  68.  
  69. VIPAdmin={
  70.  
  71. };
  72.  
  73. --[[
  74. Permissions
  75. �����������
  76. -- You can set the admin power required to use a command
  77. -- COMMANDNAME=ADMINPOWER; ]]
  78.  
  79. Permissions={
  80.  
  81. };
  82.  
  83. }
  84.  
  85. return {Settings,{Owners,SuperAdmins,Admins,Mods,VIP,Banned}}
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement