Fe Ban Kick Script - Roblox Scripts - Fe Admin ... -

Because of FE, a LocalScript cannot directly kick another player. That would be a massive security hole. Instead, your must use RemoteEvents to communicate from the client (Admin UI) to the server (Actual power).

-- Create a RemoteEvent for communication local kickRemote = Instance.new("RemoteEvent") kickRemote.Name = "AdminKickRemote" kickRemote.Parent = ReplicatedStorage FE Ban Kick Script - ROBLOX SCRIPTS - FE Admin ...

local function saveBans() pcall(function() banStore:SetAsync("global", cachedBans) end) end Because of FE, a LocalScript cannot directly kick

-- Assume there is a TextBox where the admin types the target's name local script.Parent = script.Parent -- The button local targetTextBox = script.Parent.Parent:WaitForChild("TargetNameBox") -- A TextBox local reasonBox = script.Parent.Parent:WaitForChild("ReasonBox") -- A TextBox Because of FE