Advertisement
Guest User

admin for your game

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