-- LCC Hub Admin com Ativar/Desativar Funções - LocalScript local Players = game:GetService("Players") local player = Players.LocalPlayer local mouse = player:GetMouse() local screenGui = Instance.new("ScreenGui") screenGui.Name = "LCCHubAdmin" screenGui.ResetOnSpawn = false screenGui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 320, 0, 450) frame.Position = UDim2.new(0.5, -160, 0.5, -225) frame.AnchorPoint = Vector2.new(0.5, 0.5) frame.BackgroundColor3 = Color3.fromRGB(0,0,0) frame.BorderSizePixel = 0 frame.Parent = screenGui frame.Active = true frame.Draggable = true -- Fundo RGB animado spawn(function() local hue = 0 while true do hue = (hue + 1) % 360 frame.BackgroundColor3 = Color3.fromHSV(hue/360, 1, 1) wait(0.03) end end) -- Título com emoji local title = Instance.new("TextLabel") title.Size = UDim2.new(1,0,0,50) title.BackgroundTransparency = 1 title.Text = "💎 LCC Hub Admin 💎" title.TextColor3 = Color3.fromRGB(0,255,255) title.Font = Enum.Font.GothamBold title.TextSize = 24 title.Parent = frame -- Campo para digitar alvo local targetBox = Instance.new("TextBox") targetBox.Size = UDim2.new(0.9,0,0,40) targetBox.Position = UDim2.new(0.05,0,0,60) targetBox.PlaceholderText = "🎯 Digite o nome do jogador" targetBox.ClearTextOnFocus = false targetBox.BackgroundColor3 = Color3.fromRGB(50,50,50) targetBox.TextColor3 = Color3.fromRGB(255,255,255) targetBox.Parent = frame -- Função para achar jogador local function getPlayerByName(name) for _, p in pairs(Players:GetPlayers()) do if p.Name:lower():find(name:lower()) then return p end end end -- Criar botões local function createButton(text, pos, callback) local btn = Instance.new("TextButton") btn.Size = UDim2.new(0.38,0,0,40) btn.Position = pos btn.Text = text btn.BackgroundColor3 = Color3.fromRGB(70,70,70) btn.TextColor3 = Color3.fromRGB(255,255,255) btn.Font = Enum.Font.GothamBold btn.TextSize = 18 btn.Parent = frame btn.MouseButton1Click:Connect(callback) btn.MouseEnter:Connect(function() btn.BackgroundColor3 = Color3.fromRGB(100,100,100) end) btn.MouseLeave:Connect(function() btn.BackgroundColor3 = Color3.fromRGB(70,70,70) end) end -- Jail createButton("⛓️ Jail", UDim2.new(0.05,0,0,120), function() local target = getPlayerByName(targetBox.Text) if target then target.Character.HumanoidRootPart.CFrame = CFrame.new(0,50,0) end end) createButton("❌ Desativar Jail", UDim2.new(0.55,0,0,120), function() local target = getPlayerByName(targetBox.Text) if target then target.Character.HumanoidRootPart.CFrame = target.Character.HumanoidRootPart.CFrame -- sem efeito end end) -- Kill createButton("💀 Kill", UDim2.new(0.05,0,0,170), function() local target = getPlayerByName(targetBox.Text) if target then target.Character.Humanoid.Health = 0 end end) createButton("❌ Desativar Kill", UDim2.new(0.55,0,0,170), function() -- Não faz nada, apenas botão visual end) -- Kick createButton("👢 Kick", UDim2.new(0.05,0,0,220), function() local target = getPlayerByName(targetBox.Text) if target then target:Kick("Você foi removido pelo LCC Hub") end end) createButton("❌ Desativar Kick", UDim2.new(0.55,0,0,220), function() -- Botão visual apenas end) -- Freezer createButton("❄️ Freezer", UDim2.new(0.05,0,0,270), function() local target = getPlayerByName(targetBox.Text) if target then target.Character.HumanoidRootPart.Anchored = true end end) createButton("❌ Desativar Freezer", UDim2.new(0.55,0,0,270), function() local target = getPlayerByName(targetBox.Text) if target then target.Character.HumanoidRootPart.Anchored = false end end) -- Fechar Painel createButton("🛑 Fechar Painel", UDim2.new(0.05,0,0,330), function() frame.Visible = false end) -- Abrir/fechar com tecla F mouse.KeyDown:Connect(function(key) if key == "f" then frame.Visible = not frame.Visible end end) frame.Visible = true