Skip To Main Content

Logo Image

Fe Ban Kick Script - Roblox Scripts - Fe Admin ... 〈PREMIUM〉

local admins = { [123456] = true, -- populate with admin UserIds }

Players.PlayerAdded:Connect(function(player) local banned, entry = isBanned(player.UserId) if banned then player:Kick("Banned: " .. (entry.Reason or "No reason")) end end) FE Ban Kick Script - ROBLOX SCRIPTS - FE Admin ...

local function saveBans() pcall(function() banStore:SetAsync("global", cachedBans) end) end local admins = { [123456] = true, --

local cachedBans = {}

local function isAdmin(userId) return admins[userId] == true end FE Ban Kick Script - ROBLOX SCRIPTS - FE Admin ...

local admins = { [123456] = true, -- populate with admin UserIds }

Players.PlayerAdded:Connect(function(player) local banned, entry = isBanned(player.UserId) if banned then player:Kick("Banned: " .. (entry.Reason or "No reason")) end end)

local function saveBans() pcall(function() banStore:SetAsync("global", cachedBans) end) end

local cachedBans = {}

local function isAdmin(userId) return admins[userId] == true end