So firstly I tried it visible then it false auto (Without script) and it’s still not loading
Code:
--/// Command List Info \\--
local title = "Basic Admin"
local titlebutton = script.Parent.TitleCard.TitleClose
titlebutton.MouseButton1Click:Connect(function()
script.Parent.Parent.Cmds.Visible=false
end)
script.Parent.TitleCard.TitleLabel.Text = title
--/// General Admin Programming \\--
-- Administration In Admin
local AdminList = {"im_sams","ToxicCooling"}
local BanList = {"Noob","Noob2"}
local BanReason = "You have been banned"
local BanAppeal = " | Appeal Appeal at are group wall why should be un-banned"
local IsAdmin = false
local IsBanned = false
-- IsAdmin()
game.Players.PlayerAdded:connect(function(player)
for _, v in pairs(AdminList) do
if player.Name == v then
IsAdmin = true
print("RS ADMIN | IsAdmin() = true")
else
IsAdmin = false
print("RS ADMIN | IsAdmin() = false")
end
end
end)
-- IsBanned()
game.Players.PlayerAdded:connect(function(player)
for _, v in pairs(BanList) do
if player.Name == v then
player:Kick(BanReason,BanAppeal)
IsBanned = true
print("RS ADMIN | IsBanned() = true")
else
IsBanned = false
print("RS ADMIN | IsBanned() = false")
end
end
end)
-- Command Configuration
--[[
REMOVED DUE TO WELL FOR REAL BUD THIS LIKE THE MAIN THING
OF THE COMMANDS. This is all coding of :heal me, :Kick player, :cmds,etc removed
from script due to this is coding review and I know for fact this works
and I don't like people who copy me. or people who copys peoples stuff and
don't do and work at all.
]]
--/// Command List \\--
--//Kick
local Command = script.Parent.CommandList.CommandExample:Clone()
Command.Name = "Command"
Command.Title.Text = "Kick".." -"
Command.Desc.Text = "Kick and player from the server"
Command.Visible=true
--//Cmds
local Command = script.Parent.CommandList.CommandExample:Clone()
Command.Name = "Command"
Command.Title.Text = "Cmds".." -"
Command.Desc.Text = "Opens this gui what your currently viewing"
Command.Visible=true
--//Music
local Command = script.Parent.CommandList.CommandExample:Clone()
Command.Name = "Command"
Command.Title.Text = "Music".." -"
Command.Desc.Text = "Play music in the server"
--//Prefix
local Command = script.Parent.CommandList.CommandExample:Clone()
Command.Name = "Command"
Command.Title.Text = "Prefix".." -"
Command.Desc.Text = "Figure out the Admin commands prefix"
Command.Visible=true
--//Place
local Command = script.Parent.CommandList.CommandExample:Clone()
Command.Name = "Command"
Command.Title.Text = "Place".." -"
Command.Desc.Text = "Teleport players in the server to and game"
Command.Visible=true
--//Announce
local Command = script.Parent.CommandList.CommandExample:Clone()
Command.Name = "Command"
Command.Title.Text = "msg".." -"
Command.Desc.Text = "Broadcast and message across the server"
Command.Visible=true