I own a cafe game, and need a command bar for the admin! I use BAE2… and dont know how to make it so that mobile users can click a text button which would let them type things in the Basic Admin Essentials 2 command bar which usually on PC is the ’ key! I already tried several scripts, and they didnt work, im unsure wether or not I am on the right or wrong track also! This is my best attempt that I could have tried: `local UIS = game:GetService(“UserInputService”)
local Player = game.Players.LocalPlayer
local ScreenGui = Instance.new(“ScreenGui”, Player:WaitForChild(“PlayerGui”))
ScreenGui.ResetOnSpawn = false
local CommandButton = Instance.new(“TextButton”, ScreenGui)
CommandButton.Size = UDim2.new(0, 50, 0, 50)
CommandButton.Position = UDim2.new(0.9, 0, 0, 10)
CommandButton.BackgroundColor3 = Color3.fromRGB(50, 50, 50)
CommandButton.Text = “CMD”
CommandButton.TextColor3 = Color3.new(1, 1, 1)
CommandButton.Font = Enum.Font.SourceSansBold
CommandButton.TextSize = 18
CommandButton.BorderSizePixel = 0
CommandButton.MouseButton1Click:Connect(function()
UIS:SendKeyEvent(true, Enum.KeyCode.Backquote, false, game)
end)
`
I recommend that you create your own admin system. By learning how to create it, you will be able to implement whatever you want and perform maintenance on the code without difficulty, since you were the one who wrote the script.
Yeah! I get what your saying but im not skilled anough to be writing a whole admin by myself… thank you extremely much for your response though CandyProject! 
What do you need in admin commands? Describe briefly.
Alot to be honest! Too many to list but mainly Kick, ban, pban, countdown, system message, message, shutdown, bring, respawn, reset, and chatlogs!
The vast majority of these functions can be created with Roblox’s new TextChatService. I found TextChatCommands to be excellent; the server detects when a command has been sent, no messages are displayed in the chat, and creating a script based on the command is extremely simple.
Perhaps the only thing you wouldn’t use TextChatCommands for would be ChatLogs, but you can also use TextChatService.
I had created a custom chat with several functions included, but after TextChatService was updated, I realized that I could keep up with the pace of updates and migrated completely to the new service. I recommend that you take a look, you’ll like it.
Mind sending it? I would be extremly interested!