Advertisement
Guest User

ADMIN SCRIPT FOR ROBLOX

a guest
Apr 8th, 2017
14,310
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.74 KB | None | 0 0
  1. --[[
  2. Here, you adjust settings. Do not touch semicolons(;) unless it's the Prefix inside the quotes.
  3. --]]
  4.  
  5. local Elements = {
  6. -----------[[ ADMINS ]]-----------------
  7. Ranks = {
  8. ["Owner"] = {"ROBLOX", "nilashp"}; -- All commands, full power, stops admin, and other ownery things
  9. ["Admin"] = {"BestFriend"}; -- Most commands, can kick, ban, crash, and has power in servers
  10. ["Member"] = {"Friend", "Other Friend"}; -- Some commands, no kick, ban, crash, shutdown, no real power
  11. ["Banned"] = {"Noob", "Butt"}; -- Can't join
  12. ["Crashed"] = {"TurdHead", "BiggerNoob"}; -- Get's lagged >:D
  13. ["Muted"] = {"Hacker", "Exploiter"}; -- Can join server, but they can't chat(Great for nooby hackers)
  14. };
  15. ----------------------------------------
  16.  
  17. -----------[[ SETTINGS ]]---------------
  18. FUN = true; -- Eveyone likes fun! so why not me true! If your place is a military place and you have no scene of humor you can change it to false
  19. LagTime = 5; -- The crash command disconnects the player. then the time set here will count down until lag
  20. Prefix = ";"; -- What you say before a command. The ";" in [ ;kill me ]
  21. Bet = " "; -- Separates arguments(Cannot be slash or dash or it will become space)
  22. EnableAdminMenu = true; -- Set true or false if you want to enable the admin menu
  23. Filter = {"GetObjects"}; -- Used for Anti-Exploits. If someone says anything on this list they will be kicked.
  24. ServerLocked = false; -- Used to kick non-admins when they join
  25. DisableAbuse = false; -- Disables abusive command like kill,fling,loopfling,ect... (FOR MEMBER RANK ONLY)
  26. --------------------------------------
  27.  
  28. -----------[[ VIPS ]]-----------------
  29. VIPMemberID = 0; -- Put the gamepass ID for people to have member access, leave 0 if you do not want it
  30. VIPAdminID = 0; -- Put the gamepass ID for people to have admin access, leave 0 if you do not want it
  31. --------------------------------------
  32.  
  33. -----------[[ GROUPS ]]---------------
  34. GroupID = 0; -- Links group to admin, leave 0 if you do not want to do so
  35. GroupMemberRank = 0; -- the lowest rank that will get admin commands[Member Rank], If you have linked a group to this DO NOT make 0
  36. GroupAdminRank = 0; -- the lowest rank that will get admin commands[Admin Rank], If you have linked a group to this DO NOT make 0
  37. GroupOwnerRank = 0; -- the lowest rank that will get admin commands[Owner Rank], If you have linked a group to this DO NOT make 0
  38. RankBan = 0; -- 1st arguments is what action a rank will be from a group, 2nd is the rank
  39. --------------------------------------
  40.  
  41. -----------[[ BADGES ]]---------------
  42. BadgeID = 0; -- Leave 0 if you don't want people to have admin when they get a badge[Member Rank], otherwise, put in badge ID
  43. --------------------------------------
  44. } return Elements
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement