- Fe - Admin Abuser Gui Script Apr 2026

-- Crash game (visual only, doesn't actually crash) createButton("⚠️ VISUAL CRASH (SCREEN SHAKE)", Color3.fromRGB(100, 100, 100), function() -- Creates a visual effect, not an actual crash local shakeIntensity = 0 local connection connection = RunService.RenderStepped:Connect(function() if shakeIntensity > 0 then local shake = Vector2.new( math.random(-shakeIntensity, shakeIntensity), math.random(-shakeIntensity, shakeIntensity) ) mainFrame.Position = UDim2.new(0.5, -200 + shake.X, 0.5, -250 + shake.Y) shakeIntensity = shakeIntensity - 0.5 else mainFrame.Position = UDim2.new(0.5, -200, 0.5, -250) connection:Disconnect() end end) shakeIntensity = 15 end)

local uiPadding = Instance.new("UIPadding") uiPadding.PaddingLeft = UDim.new(0, 10) uiPadding.PaddingRight = UDim.new(0, 10) uiPadding.PaddingTop = UDim.new(0, 10) uiPadding.PaddingBottom = UDim.new(0, 10) uiPadding.Parent = scrollFrame

-- Close and minimize local minimized = false local originalSize = mainFrame.Size - FE - Admin Abuser Gui Script

-- Function to create a section header local function createHeader(text) local header = Instance.new("TextLabel") header.Size = UDim2.new(1, 0, 0, 25) header.BackgroundTransparency = 1 header.Text = text header.TextColor3 = Color3.fromRGB(255, 120, 120) header.TextSize = 14 header.Font = Enum.Font.GothamBold header.TextXAlignment = Enum.TextXAlignment.Left header.Parent = scrollFrame end

-- Create GUI gui.Name = "AdminAbuseGUI" gui.ResetOnSpawn = false gui.Parent = CoreGui -- Crash game (visual only, doesn't actually crash)

-- Minimize Button minimizeBtn.Name = "MinimizeBtn" minimizeBtn.Size = UDim2.new(0, 30, 1, 0) minimizeBtn.Position = UDim2.new(1, -65, 0, 0) minimizeBtn.BackgroundTransparency = 1 minimizeBtn.Text = "−" minimizeBtn.TextColor3 = Color3.fromRGB(255, 255, 100) minimizeBtn.TextSize = 20 minimizeBtn.Font = Enum.Font.GothamBold minimizeBtn.Parent = topBar

local selectedPlayerLabel = Instance.new("TextLabel") selectedPlayerLabel.Size = UDim2.new(1, 0, 0, 25) selectedPlayerLabel.Position = UDim2.new(0, 0, 0, 45) selectedPlayerLabel.BackgroundTransparency = 1 selectedPlayerLabel.Text = "None Selected" selectedPlayerLabel.TextColor3 = Color3.fromRGB(200, 200, 200) selectedPlayerLabel.TextSize = 12 selectedPlayerLabel.Font = Enum.Font.Gotham selectedPlayerLabel.TextXAlignment = Enum.TextXAlignment.Center selectedPlayerLabel.Parent = scrollFrame -- Crash game (visual only

local topCorner = Instance.new("UICorner") topCorner.CornerRadius = UDim.new(0, 8) topCorner.Parent = topBar

-- Content Frame contentFrame.Name = "ContentFrame" contentFrame.Size = UDim2.new(1, 0, 1, -35) contentFrame.Position = UDim2.new(0, 0, 0, 35) contentFrame.BackgroundTransparency = 1 contentFrame.Parent = mainFrame