Advertisement
Mitko1223tm

another

May 24th, 2019
169
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.07 KB | None | 0 0
  1.  
  2.  
  3. if _G.KAU then script:Destroy() end _G.KAU=0 script.Name,script.Parent='Kohl\'s Admin Infinite',game:service'ServerScriptService' while require(3163947284)~='badpotato' do wait(1) end
  4.  
  5. --[[
  6. Use usernames or userIds to add a user to a list
  7. For example; Admins={'MyBestFriend','Telamon',261} ]]
  8.  
  9. local Banned={'someoneyoudislike'} -- For those who have wronged you, & this guy
  10.  
  11. --------------------------------------------------------------
  12. -- You DO NOT need to add yourself to any of these lists!!! --
  13. --------------------------------------------------------------
  14.  
  15. local Owners={"Mitko1223tm","AntonioRecio123"} -- Can set SuperAdmins, & use all the commands
  16. local SuperAdmins={} -- Can set permanent admins, & shutdown the game
  17. local Admins={} -- Can ban, crash, & set Moderators/VIP
  18. local Mods={} -- Can kick, mute, & use most commands
  19. local VIP={} -- Can use nonabusive commands only on self
  20. --
  21. -- THESE ARE THE CORE SETTINGS
  22. -- YOU WILL NOT BE ABLE TO CHANGE THEM IN-GAME
  23. local Settings={
  24. --[[
  25. Style Options
  26. ������������� ]]
  27. Flat=false; -- Enables Flat theme / Disables Aero theme
  28. ForcedColor=false; -- Forces everyone to have set color & transparency
  29. Color=Color3.new(0,0,0); -- Changes the Color of the user interface
  30. ColorTransparency=.75; -- Changes the Transparency of the user interface
  31. Chat=false; -- Enables the custom chat
  32. BubbleChat=false; -- Enables the custom bubble chat
  33. --[[
  34. Basic Settings
  35. �������������� ]]
  36. AdminCredit=true; -- Enables the credit GUI for that appears in the bottom right
  37. AutoClean=false; -- Enables automatic cleaning of hats & tools in the Workspace
  38. AutoCleanDelay=60; -- The delay between each AutoClean routine
  39. CommandBar=true; -- Enables the Command Bar | GLOBAL KEYBIND: \
  40. FunCommands=true; -- Enables fun yet unnecessary commands
  41. FreeAdmin=false; -- Set to 1-5 to grant admin powers to all, otherwise set to false
  42. PublicLogs=false; -- Allows all users to see the command & chat logs
  43. Prefix=':'; -- Character to begin a command
  44. --[[
  45. Admin Powers
  46. ������������
  47. 0 Player
  48. 1 VIP Can use nonabusive commands only on self
  49. 2 Moderator Can kick, mute, & use most commands
  50. 3 Administrator Can ban, crash, & set Moderators/VIP
  51. 4 SuperAdmin Can grant permanent powers, & shutdown the game
  52. 5 Owner Can set SuperAdmins, & use all the commands
  53. 6 Game Creator Can set owners & use all the commands
  54.  
  55. Group & VIP Admin
  56. �����������������
  57. You can set multiple Groups & Ranks to grant users admin powers
  58. GroupAdmin={
  59. [12345]={[254]=4,[253]=3};
  60. [GROUPID]={[RANK]=ADMINPOWER}
  61. };
  62. You can set multiple Assets to grant users admin powers
  63. VIPAdmin={
  64. [12345]=3;
  65. [54321]=4;
  66. [ITEMID]=ADMINPOWER;
  67. }; ]]
  68.  
  69. GroupAdmin={
  70.  
  71. };
  72.  
  73. VIPAdmin={
  74.  
  75. };
  76.  
  77. --[[
  78. Permissions
  79. �����������
  80. -- You can set the admin power required to use a command
  81. -- COMMANDNAME=ADMINPOWER; ]]
  82.  
  83. Permissions={
  84.  
  85. };
  86.  
  87. }
  88.  
  89. return {Settings,{Owners,SuperAdmins,Admins,Mods,VIP,Banned}}
  90.  
  91. --[[
  92.  
  93. ADMIN POWERS
  94.  
  95. 0 Player
  96. 1 VIP/Donor
  97. 2 Moderator
  98. 3 Administrator
  99. 4 Super Administrator
  100. 5 Owner
  101. 6 Game Creator
  102.  
  103. First table consists of the different variations of the command.
  104.  
  105. Second table consists of the description and an example of how to use it.
  106.  
  107. Third index is the ADMIN POWER required to use the command.
  108.  
  109. Fourth table consists of the arguments that will be returned in the args table.
  110. 'player' -- returns an array of Players
  111. 'userid' -- returns an array of userIds
  112. 'boolean' -- returns a Boolean value
  113. 'color' -- returns a Color3 value
  114. 'number' -- returns a Number value
  115. 'string' -- returns a String value
  116. 'time' -- returns # of seconds
  117. 'banned' -- returns a value from Bans table
  118. 'admin' -- returns a value from Admins table
  119. -- Adding / to any argument will make it optional; can return nil!!!
  120.  
  121. Fifth index consists of the function that will run when the command is executed properly. ]]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement