Advertisement
RobloxScripter12

Admin Script K

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