The Ultimate Basic Admin Essentials Guide

Hey Owen! I would greatly appreciate it if you could provide a more detailed explanation of this section. Thank you!

1 Like

What if the team name has spaces?

Could you add tutorial on how to fix the unban command?

It should still work as long as you put the first word of the team name

What if there are multiple teams with the same name?

I’d assume basic admin would execute the command on all the applicable teams then

Lol, I’m making a training game, and the training groups all become with training…
Making my own system…

Could you please make a tutorial on how to add Roblox Ban API for BAE?

I have inserted the script at the bottom of the client script and the second script into the button, however, when I tested it the command bar didn’t open.

I have now added the Sticky Message Command to my guide, with a video tutorial on exactly how to code it and set it up. I have provided the files for the GUI and the code in the post to save time, but watch the video if you want a better explanation of how they work.

1 Like

Hey, I’ve updated the code in the post to work with the newest version of Basic Admin Essentials - sorry I missed this! I’ve also included a video guide if people are still unsure about setting up the command bar button.

Hey, I created a video for people who want to see a visual guide of what to do - it has now been attached to the section. Let me know if you need more help :slight_smile:

Thanks so much for the update! This really helped me, and I’m looking forward to the Ban API update! Keep up your great work! :blush:

1 Like

You finally published it! Thank you! I really appreicate!

Hi! I was following the guide toward making custom levels, and it worked great for everything except my setup for level 4 (old game creator) I renamed level 4 and added two more levels so game creator is 6. This made it to where anyone with Level 4 just simply had full creator admin. Any idea why?

how can i make the sticky the same color as the the system color? its just black while our system color is pink

Merry Christmas! :santa:

Good question! Since the UI for the sticky note command above isn’t tied to the actual basic admin code in any way, it won’t automatically update to your system color.

There are 2 options to get around this:

  1. Manually set the BackgroundColor3 property of all the sticky note UI to the same pink you have your system color set to
  2. Put the following code at the very bottom of the Basic Admin UI script:
playerGui:WaitForChild("StickyNote").Clip.Container.BackgroundColor3 = Color3.fromRGB(255, 255, 255)
playerGui:WaitForChild("StickyNote").Clip.Top.BackgroundColor3 = Color3.fromRGB(255, 255, 255)

Obviously replace the two Color3 values with your actual system color.

Hope this helps!

1 Like

where? i put it in the StickyNote module script in Plugins and i get this error: ServerScriptService.Basic Admin Essentials 2.0.Plugins.Sticky Note:64: Expected <eof>, got 'playerGui'

also, my does my module give me 2 errors?: Requested module experienced an error while loading - Client - Client // MainModule:132 and Requested module experienced an error while loading - Client - Client // MainModule:132

1 Like

Where do i place this? I’m confused with it.

You’d place this at the very bottom of the “Basic Admin Client” LocalScript, which you can find under the “Components” folder of the Basic Admin Essentials 2.0 module. I recommend watching the video guide in my original post if you still can’t find where to place this.