Advertisement
Guest User

Flamingo

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