Do you think this ban script will work?(In ServerScriptService and is a Script)
wait()
until game.ReplicatedStorage.EnableAdmin
game.Players.PlayerAdded:Connect(function(player)
local Leaderstats = player:WaitForChild("leaderstats")
local OwnedChars = player:WaitForChild("OwnedCharacters")
local Value = Leaderstats:WaitForChild("Equipped").Value
local C2 = player:WaitForChild("Scout").Value
while wait() do
if Value == 2 and C2 == 0 then
print("Ban")
player:WaitForChild("Banned?").Value = 1
end
end
end)