-- [[ Lucius Radar V6 - رادار لوسيوس ]] -- local ScreenGui = Instance.new("ScreenGui") local MainFrame = Instance.new("Frame") local Title = Instance.new("TextLabel") local UIList = Instance.new("UIListLayout") local ToggleBtn = Instance.new("TextButton") local parent = game:GetService("CoreGui") or game.Players.LocalPlayer:WaitForChild("PlayerGui") ScreenGui.Parent = parent ScreenGui.Name = "LuciusRadar_Stable" ScreenGui.ResetOnSpawn = false ToggleBtn.Name = "LuciusToggle" ToggleBtn.Parent = ScreenGui ToggleBtn.Size = UDim2.new(0, 90, 0, 40) ToggleBtn.Position = UDim2.new(0, 10, 0.5, -20) ToggleBtn.BackgroundColor3 = Color3.fromRGB(200, 0, 0) ToggleBtn.Text = "لوسيوس" ToggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) ToggleBtn.Font = Enum.Font.SourceSansBold ToggleBtn.TextSize = 20 Instance.new("UICorner", ToggleBtn).CornerRadius = UDim.new(0, 8) MainFrame.Parent = ScreenGui MainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) MainFrame.Position = UDim2.new(0.5, -160, 0.2, 0) MainFrame.Size = UDim2.new(0, 320, 0, 470) MainFrame.Active = true MainFrame.Draggable = true Instance.new("UICorner", MainFrame).CornerRadius = UDim.new(0, 10) Title.Parent = MainFrame Title.Size = UDim2.new(1, 0, 0, 50) Title.BackgroundColor3 = Color3.fromRGB(180, 0, 0) Title.Text = "رادار لوسيوس - مراقبة احترافية" Title.TextColor3 = Color3.fromRGB(255, 255, 255) Title.Font = Enum.Font.SourceSansBold Title.TextSize = 18 Instance.new("UICorner", Title) UIList.Parent = MainFrame UIList.Padding = UDim.new(0, 10) UIList.SortOrder = Enum.SortOrder.LayoutOrder UIList.HorizontalAlignment = Enum.HorizontalAlignment.Center ToggleBtn.MouseButton1Click:Connect(function() MainFrame.Visible = not MainFrame.Visible end) local function CreateTracker(id) local Frame = Instance.new("Frame") Frame.Size = UDim2.new(0.95, 0, 0, 75) Frame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) Frame.Parent = MainFrame Instance.new("UICorner", Frame) local Input = Instance.new("TextBox") Input.Size = UDim2.new(0.5, 0, 0, 30) Input.Position = UDim2.new(0.05, 0, 0.1, 0) Input.PlaceholderText = "اسم اللاعب " .. id Input.Text = "" Input.BackgroundColor3 = Color3.fromRGB(50, 50, 50) Input.TextColor3 = Color3.fromRGB(255, 255, 255) Input.Parent = Frame Instance.new("UICorner", Input) local CopyBtn = Instance.new("TextButton") CopyBtn.Size = UDim2.new(0.15, 0, 0, 30) CopyBtn.Position = UDim2.new(0.57, 0, 0.1, 0) CopyBtn.BackgroundColor3 = Color3.fromRGB(100, 100, 100) CopyBtn.Text = "نسخ" CopyBtn.TextColor3 = Color3.fromRGB(255, 255, 255) CopyBtn.TextSize = 12 CopyBtn.Parent = Frame Instance.new("UICorner", CopyBtn) local StatusLabel = Instance.new("TextLabel") StatusLabel.Size = UDim2.new(0.9, 0, 0, 25) StatusLabel.Position = UDim2.new(0.05, 0, 0.6, 0) StatusLabel.Text = "بانتظار الاسم..." StatusLabel.TextColor3 = Color3.fromRGB(180, 180, 180) StatusLabel.BackgroundTransparency = 1 StatusLabel.TextXAlignment = Enum.TextXAlignment.Left StatusLabel.Parent = Frame local Stats = Instance.new("Frame") Stats.Size = UDim2.new(0.25, 0, 0, 60) Stats.Position = UDim2.new(0.73, 0, 0.05, 0) Stats.BackgroundTransparency = 1 Stats.Parent = Frame local ExitTxt = Instance.new("TextLabel") ExitTxt.Size = UDim2.new(1, 0, 0.5, 0) ExitTxt.Text = "خروج: 0" ExitTxt.TextColor3 = Color3.fromRGB(255, 80, 80) ExitTxt.BackgroundTransparency = 1 ExitTxt.Font = Enum.Font.SourceSansBold ExitTxt.Parent = Stats local EnterTxt = Instance.new("TextLabel") EnterTxt.Size = UDim2.new(1, 0, 0.5, 0) EnterTxt.Position = UDim2.new(0, 0, 0.5, 0) EnterTxt.Text = "دخول: 0" EnterTxt.TextColor3 = Color3.fromRGB(80, 255, 80) EnterTxt.BackgroundTransparency = 1 EnterTxt.Font = Enum.Font.SourceSansBold EnterTxt.Parent = Stats local targetName = "" local exits = 0 local enters = 0 CopyBtn.MouseButton1Click:Connect(function() if targetName ~= "" then setclipboard(targetName) CopyBtn.Text = "تم!" task.wait(1) CopyBtn.Text = "نسخ" end end) Input:GetPropertyChangedSignal("Text"):Connect(function() local text = Input.Text:lower() if text ~= "" then for _, p in pairs(game.Players:GetPlayers()) do if string.sub(p.Name:lower(), 1, #text) == text then targetName = p.Name StatusLabel.Text = "الهدف: " .. targetName StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 255) break end end else targetName = "" StatusLabel.Text = "بانتظار الاسم..." end end) game.Players.PlayerRemoving:Connect(function(player) if targetName ~= "" and player.Name == targetName then task.wait(0.6) if not game.Players:FindFirstChild(targetName) then exits = exits + 1 ExitTxt.Text = "خروج: " .. exits StatusLabel.Text = "خرج لاعب: " .. targetName StatusLabel.TextColor3 = Color3.fromRGB(255, 0, 0) end end end) game.Players.PlayerAdded:Connect(function(player) if targetName ~= "" and player.Name == targetName then enters = enters + 1 EnterTxt.Text = "دخول: " .. enters StatusLabel.Text = "رجع لاعب: " .. targetName StatusLabel.TextColor3 = Color3.fromRGB(0, 255, 0) end end) end for i = 1, 5 do CreateTracker(i) end