local coreGui = game:GetService("CoreGui") local players = game:GetService("Players") local localPlayer = players.LocalPlayer local playerGui = localPlayer:WaitForChild("PlayerGui") local parentTarget = coreGui pcall(function() local testGui = Instance.new("ScreenGui") testGui.Parent = coreGui testGui:Destroy() end) if not pcall(function() local test = Instance.new("ScreenGui"); test.Parent = coreGui; test:Destroy() end) then parentTarget = playerGui end if parentTarget:FindFirstChild("SamlatClarkRadar") then parentTarget.SamlatClarkRadar:Destroy() end local screenGui = Instance.new("ScreenGui") screenGui.Name = "SamlatClarkRadar" screenGui.ResetOnSpawn = false screenGui.Parent = parentTarget local floatingIcon = Instance.new("ImageButton") floatingIcon.Size = UDim2.new(0, 45, 0, 45) floatingIcon.Position = UDim2.new(0, 20, 0, 100) floatingIcon.BackgroundColor3 = Color3.fromRGB(20, 20, 20) floatingIcon.BorderSizePixel = 0 floatingIcon.Active = true floatingIcon.Draggable = true floatingIcon.Image = "rbxassetid://6034293952" floatingIcon.Visible = false floatingIcon.Parent = screenGui local iconCorner = Instance.new("UICorner") iconCorner.CornerRadius = UDim.new(1, 0) iconCorner.Parent = floatingIcon local iconStroke = Instance.new("UIStroke") iconStroke.Color = Color3.fromRGB(255, 60, 0) iconStroke.Thickness = 2 iconStroke.Parent = floatingIcon local welcomeFrame = Instance.new("Frame") welcomeFrame.Size = UDim2.new(0, 340, 0, 150) welcomeFrame.Position = UDim2.new(0.5, -170, 0.5, -75) welcomeFrame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) welcomeFrame.BackgroundTransparency = 0.05 welcomeFrame.BorderSizePixel = 0 welcomeFrame.Active = true welcomeFrame.Draggable = true welcomeFrame.Parent = screenGui local wCorner = Instance.new("UICorner") wCorner.CornerRadius = UDim.new(0, 10) wCorner.Parent = welcomeFrame local wStroke = Instance.new("UIStroke") wStroke.Color = Color3.fromRGB(255, 60, 0) wStroke.Thickness = 2 wStroke.Parent = welcomeFrame local welcomeText = Instance.new("TextLabel") welcomeText.Size = UDim2.new(1, -20, 0, 50) welcomeText.Position = UDim2.new(0, 10, 0, 20) welcomeText.BackgroundTransparency = 1 welcomeText.TextColor3 = Color3.fromRGB(255, 255, 255) welcomeText.TextSize = 18 welcomeText.Font = Enum.Font.SourceSansBold welcomeText.Text = "" welcomeText.TextXAlignment = Enum.TextXAlignment.Center welcomeText.Parent = welcomeFrame local typeSound = Instance.new("Sound") typeSound.SoundId = "rbxassetid://9114221371" typeSound.Volume = 0.5 typeSound.Parent = welcomeFrame local startButton = Instance.new("TextButton") startButton.Size = UDim2.new(0.8, 0, 0, 40) startButton.Position = UDim2.new(0.1, 0, 0, 85) startButton.BackgroundColor3 = Color3.fromRGB(200, 30, 0) startButton.TextColor3 = Color3.fromRGB(255, 255, 255) startButton.Text = "تشغيل السكربت" startButton.TextSize = 16 startButton.Font = Enum.Font.SourceSansBold startButton.Parent = welcomeFrame local sCorner = Instance.new("UICorner") sCorner.CornerRadius = UDim.new(0, 6) sCorner.Parent = startButton local function playRealisticFireExplosion() local explosionHolder = Instance.new("Frame") explosionHolder.Size = UDim2.new(1, 0, 1, 0) explosionHolder.BackgroundTransparency = 1 explosionHolder.Parent = screenGui for i = 1, 50 do local particle = Instance.new("Frame") local sizeVal = math.random(4, 16) particle.Size = UDim2.new(0, sizeVal, 0, sizeVal) particle.Position = UDim2.new(0.5, 0, 0.5, 0) local colorChoice = math.random(1, 4) if colorChoice == 1 then particle.BackgroundColor3 = Color3.fromRGB(255, 20, 0) elseif colorChoice == 2 then particle.BackgroundColor3 = Color3.fromRGB(255, 120, 0) elseif colorChoice == 3 then particle.BackgroundColor3 = Color3.fromRGB(255, 220, 50) else particle.BackgroundColor3 = Color3.fromRGB(40, 40, 40) end particle.BorderSizePixel = 0 particle.Parent = explosionHolder local pCorner = Instance.new("UICorner") pCorner.CornerRadius = UDim.new(1, 0) pCorner.Parent = particle local angle = math.rad(math.random(0, 360)) local distance = math.random(50, 300) local targetX = math.cos(angle) * distance local targetY = math.sin(angle) * distance task.spawn(function() local duration = math.random(40, 70) / 100 local elapsed = 0 while elapsed < duration do local dt = task.wait() elapsed = elapsed + dt local alpha = elapsed / duration particle.Position = UDim2.new(0.5, targetX * (1 - (1-alpha)^2), 0.5, targetY * (1 - (1-alpha)^2) + (alpha * 30)) particle.BackgroundTransparency = alpha local currentSize = math.max(1, sizeVal * (1 - alpha * 0.5)) particle.Size = UDim2.new(0, currentSize, 0, currentSize) end particle:Destroy() end) end task.delay(0.9, function() explosionHolder:Destroy() end) end task.spawn(function() local fullText = "أهلا بك في عالم الصملات" for i = 1, #fullText do if not welcomeText.Parent then break end local char = fullText:sub(i, i) welcomeText.Text = fullText:sub(1, i) .. "_" if char ~= " " then typeSound:Play() end task.wait(0.04) end if welcomeText.Parent then welcomeText.Text = fullText end end) local mainFrame startButton.MouseButton1Click:Connect(function() playRealisticFireExplosion() welcomeFrame:Destroy() floatingIcon.Visible = true local function showCornerNotification(text, color) local notifLabel = Instance.new("TextLabel") notifLabel.Size = UDim2.new(0, 250, 0, 30) notifLabel.Position = UDim2.new(1, -260, 0, 15) notifLabel.BackgroundColor3 = Color3.fromRGB(15, 15, 15) notifLabel.TextColor3 = color notifLabel.TextSize = 13 notifLabel.Font = Enum.Font.SourceSansBold notifLabel.Text = text notifLabel.BorderSizePixel = 0 notifLabel.Parent = screenGui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 6) corner.Parent = notifLabel task.spawn(function() task.wait(3) for i = 1, 0, -0.1 do if not notifLabel.Parent then break end notifLabel.TextTransparency = 1 - i notifLabel.BackgroundTransparency = 1 - i task.wait(0.03) end notifLabel:Destroy() end) end players.PlayerAdded:Connect(function(plr) showCornerNotification("دخل اللاعب: " .. plr.Name, Color3.fromRGB(80, 255, 80)) end) players.PlayerRemoving:Connect(function(plr) showCornerNotification("خرج اللاعب: " .. plr.Name, Color3.fromRGB(255, 80, 80)) end) mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 320, 0, 330) mainFrame.Position = UDim2.new(0, 20, 0, 50) mainFrame.BackgroundColor3 = Color3.fromRGB(20, 20, 20) mainFrame.BorderSizePixel = 0 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = screenGui local mainCorner = Instance.new("UICorner") mainCorner.CornerRadius = UDim.new(0, 8) mainCorner.Parent = mainFrame local topBar = Instance.new("Frame") topBar.Size = UDim2.new(1, 0, 0, 35) topBar.BackgroundColor3 = Color3.fromRGB(15, 15, 15) topBar.BorderSizePixel = 0 topBar.Parent = mainFrame local topCorner = Instance.new("UICorner") topCorner.CornerRadius = UDim.new(0, 8) topCorner.Parent = topBar local fireLogo = Instance.new("Frame") fireLogo.Size = UDim2.new(0, 16, 0, 16) fireLogo.Position = UDim2.new(0, 8, 0.5, -8) fireLogo.BackgroundColor3 = Color3.fromRGB(255, 40, 0) fireLogo.BorderSizePixel = 0 fireLogo.Parent = topBar local logoCorner = Instance.new("UICorner") logoCorner.CornerRadius = UDim.new(1, 0) logoCorner.Parent = fireLogo local logoStroke = Instance.new("UIStroke") logoStroke.Color = Color3.fromRGB(0, 0, 0) logoStroke.Thickness = 2 logoStroke.Parent = fireLogo task.spawn(function() while screenGui.Parent and mainFrame.Parent do for i = 0, 1, 0.05 do if not fireLogo.Parent then break end fireLogo.BackgroundColor3 = Color3.fromRGB(255, 40, 0):Lerp(Color3.fromRGB(180, 0, 0), i) task.wait(0.04) end for i = 0, 1, 0.05 do if not fireLogo.Parent then break end fireLogo.BackgroundColor3 = Color3.fromRGB(180, 0, 0):Lerp(Color3.fromRGB(255, 40, 0), i) task.wait(0.04) end end end) local titleLabel = Instance.new("TextLabel") titleLabel.Size = UDim2.new(0, 110, 1, 0) titleLabel.Position = UDim2.new(0, 28, 0, 0) titleLabel.BackgroundTransparency = 1 titleLabel.TextSize = 13 titleLabel.Font = Enum.Font.SourceSansBold titleLabel.Text = "Samlat v6" titleLabel.TextXAlignment = Enum.TextXAlignment.Left titleLabel.Parent = topBar task.spawn(function() while screenGui.Parent and mainFrame.Parent do for i = 0, 1, 0.2 do if not titleLabel.Parent then break end titleLabel.TextColor3 = Color3.fromRGB(255, 0, 0):Lerp(Color3.fromRGB(0, 0, 0), i) task.wait(0.02) end for i = 0, 1, 0.2 do if not titleLabel.Parent then break end titleLabel.TextColor3 = Color3.fromRGB(0, 0, 0):Lerp(Color3.fromRGB(255, 0, 0), i) task.wait(0.02) end end end) local playerCountLabel = Instance.new("TextLabel") playerCountLabel.Size = UDim2.new(0, 50, 0, 25) playerCountLabel.Position = UDim2.new(0, 138, 0.5, -12.5) playerCountLabel.BackgroundTransparency = 1 playerCountLabel.TextColor3 = Color3.fromRGB(200, 200, 200) playerCountLabel.TextSize = 9 playerCountLabel.Font = Enum.Font.SourceSansBold playerCountLabel.TextXAlignment = Enum.TextXAlignment.Center playerCountLabel.Parent = topBar local function updatePlayerCount() playerCountLabel.Text = "اللاعبين: " .. #players:GetPlayers() end updatePlayerCount() players.PlayerAdded:Connect(updatePlayerCount) players.PlayerRemoving:Connect(updatePlayerCount) local antiAfkBtn = Instance.new("TextButton") antiAfkBtn.Size = UDim2.new(0, 68, 0, 20) antiAfkBtn.Position = UDim2.new(0, 190, 0.5, -10) antiAfkBtn.BackgroundColor3 = Color3.fromRGB(180, 40, 40) antiAfkBtn.TextColor3 = Color3.fromRGB(255, 255, 255) antiAfkBtn.Text = "Anti-AFK: OFF" antiAfkBtn.TextSize = 8 antiAfkBtn.Font = Enum.Font.SourceSansBold antiAfkBtn.Parent = topBar local afkCorner = Instance.new("UICorner") afkCorner.CornerRadius = UDim.new(0, 4) afkCorner.Parent = antiAfkBtn local antiAfkEnabled = false local vu = game:GetService("VirtualUser") local afkConnection antiAfkBtn.MouseButton1Click:Connect(function() antiAfkEnabled = not antiAfkEnabled if antiAfkEnabled then antiAfkBtn.Text = "Anti-AFK: ON" antiAfkBtn.BackgroundColor3 = Color3.fromRGB(40, 180, 40) afkConnection = localPlayer.Idled:Connect(function() vu:Button2Down(Vector2.new(0,0), workspace.CurrentCamera.CFrame) task.wait(1) vu:Button2Up(Vector2.new(0,0), workspace.CurrentCamera.CFrame) end) showCornerNotification("تم تفعيل المضاد", Color3.fromRGB(80, 255, 80)) else antiAfkBtn.Text = "Anti-AFK: OFF" antiAfkBtn.BackgroundColor3 = Color3.fromRGB(180, 40, 40) if afkConnection then afkConnection:Disconnect() end showCornerNotification("تم إزالة المضاد", Color3.fromRGB(255, 80, 80)) end end) local toggleBtn = Instance.new("TextButton") toggleBtn.Size = UDim2.new(0, 20, 0, 20) toggleBtn.Position = UDim2.new(1, -23, 0.5, -10) toggleBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) toggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) toggleBtn.Text = "-" toggleBtn.TextSize = 12 toggleBtn.Font = Enum.Font.SourceSansBold toggleBtn.Parent = topBar local tCorner = Instance.new("UICorner") tCorner.CornerRadius = UDim.new(0, 4) tCorner.Parent = toggleBtn local contentElements = {} local bottomBar = Instance.new("Frame") bottomBar.Size = UDim2.new(1, 0, 0, 30) bottomBar.Position = UDim2.new(0, 0, 1, -30) bottomBar.BackgroundColor3 = Color3.fromRGB(15, 15, 15) bottomBar.BorderSizePixel = 0 bottomBar.Parent = mainFrame table.insert(contentElements, bottomBar) local bottomCorner = Instance.new("UICorner") bottomCorner.CornerRadius = UDim.new(0, 8) bottomCorner.Parent = bottomBar local tiktokBtn = Instance.new("TextButton") tiktokBtn.Size = UDim2.new(0, 78, 0, 22) tiktokBtn.Position = UDim2.new(0, 5, 0.5, -11) tiktokBtn.BackgroundColor3 = Color3.fromRGB(30, 30, 30) tiktokBtn.TextColor3 = Color3.fromRGB(255, 255, 255) tiktokBtn.Text = "حسابي تيك" tiktokBtn.TextSize = 11 tiktokBtn.Font = Enum.Font.SourceSansBold tiktokBtn.Parent = bottomBar local tiktokCorner = Instance.new("UICorner") tiktokCorner.CornerRadius = UDim.new(0, 4) tiktokCorner.Parent = tiktokBtn tiktokBtn.MouseButton1Click:Connect(function() if setclipboard then setclipboard("user513449771") end end) local rightsLabel = Instance.new("TextLabel") rightsLabel.Size = UDim2.new(0, 140, 1, 0) rightsLabel.Position = UDim2.new(1, -145, 0, 0) rightsLabel.BackgroundTransparency = 1 rightsLabel.TextSize = 11 rightsLabel.Font = Enum.Font.SourceSansBold rightsLabel.Text = "حقوق المطور محمد [clark]" rightsLabel.TextXAlignment = Enum.TextXAlignment.Right rightsLabel.Parent = bottomBar task.spawn(function() while screenGui.Parent and mainFrame.Parent do for i = 0, 1, 0.05 do if not rightsLabel.Parent then break end rightsLabel.TextColor3 = Color3.fromRGB(255, 0, 0):Lerp(Color3.fromRGB(20, 20, 20), i) task.wait(0.05) end for i = 0, 1, 0.05 do if not rightsLabel.Parent then break end rightsLabel.TextColor3 = Color3.fromRGB(20, 20, 20):Lerp(Color3.fromRGB(255, 255, 255), i) task.wait(0.05) end for i = 0, 1, 0.05 do if not rightsLabel.Parent then break end rightsLabel.TextColor3 = Color3.fromRGB(255, 255, 255):Lerp(Color3.fromRGB(255, 0, 0), i) task.wait(0.05) end end end) local textBox = Instance.new("TextBox") textBox.Size = UDim2.new(0.68, 0, 0, 30) textBox.Position = UDim2.new(0.04, 0, 0, 45) textBox.BackgroundColor3 = Color3.fromRGB(40, 40, 40) textBox.TextColor3 = Color3.fromRGB(255, 255, 255) textBox.PlaceholderText = "اكتب أول أحرف من الاسم..." textBox.Text = "" textBox.TextSize = 13 textBox.Font = Enum.Font.SourceSans textBox.Parent = mainFrame table.insert(contentElements, textBox) local textCorner = Instance.new("UICorner") textCorner.CornerRadius = UDim.new(0, 4) textCorner.Parent = textBox local addButton = Instance.new("TextButton") addButton.Size = UDim2.new(0.2, 0, 0, 30) addButton.Position = UDim2.new(0.75, 0, 0, 45) addButton.BackgroundColor3 = Color3.fromRGB(0, 0, 0) addButton.TextColor3 = Color3.fromRGB(255, 20, 0) addButton.Text = "إضافة" addButton.TextSize = 13 addButton.Font = Enum.Font.SourceSansBold addButton.Parent = mainFrame table.insert(contentElements, addButton) local addCorner = Instance.new("UICorner") addCorner.CornerRadius = UDim.new(0, 4) addCorner.Parent = addButton task.spawn(function() while addButton.Parent and mainFrame.Parent do for i = 0, 1, 0.03 do if not addButton.Parent then break end addButton.TextColor3 = Color3.fromRGB(255, 30, 0):Lerp(Color3.fromRGB(130, 0, 0), i) task.wait(0.04) end for i = 0, 1, 0.03 do if not addButton.Parent then break end addButton.TextColor3 = Color3.fromRGB(130, 0, 0):Lerp(Color3.fromRGB(255, 30, 0), i) task.wait(0.04) end end end) local scrollingFrame = Instance.new("ScrollingFrame") scrollingFrame.Size = UDim2.new(0.92, 0, 0, 185) scrollingFrame.Position = UDim2.new(0.04, 0, 0, 82) scrollingFrame.BackgroundTransparency = 1 scrollingFrame.CanvasSize = UDim2.new(0, 0, 0, 0) scrollingFrame.ScrollBarThickness = 4 scrollingFrame.Parent = mainFrame table.insert(contentElements, scrollingFrame) local uiListLayout = Instance.new("UIListLayout") uiListLayout.Parent = scrollingFrame uiListLayout.SortOrder = Enum.SortOrder.LayoutOrder uiListLayout.Padding = UDim.new(0, 5) local trackedPlayers = {} uiListLayout:GetPropertyChangedSignal("AbsoluteContentSize"):Connect(function() scrollingFrame.CanvasSize = UDim2.new(0, 0, 0, uiListLayout.AbsoluteContentSize.Y) end) local isMinimized = false toggleBtn.MouseButton1Click:Connect(function() isMinimized = not isMinimized if isMinimized then toggleBtn.Text = "+" mainFrame.Size = UDim2.new(0, 320, 0, 35) for _, elem in ipairs(contentElements) do elem.Visible = false end else toggleBtn.Text = "-" mainFrame.Size = UDim2.new(0, 320, 0, 330) for _, elem in ipairs(contentElements) do elem.Visible = true end end end) local function searchAndAdd(query) if query == "" then return end query = query:lower() local foundPlayer = nil for _, p in ipairs(players:GetPlayers()) do if p.Name:lower():sub(1, #query) == query or p.DisplayName:lower():sub(1, #query) == query then foundPlayer = p break end end if not foundPlayer then return end local name = foundPlayer.Name local targetUserId = foundPlayer.UserId if trackedPlayers[targetUserId] then return end local personFrame = Instance.new("Frame") personFrame.Size = UDim2.new(1, 0, 0, 75) personFrame.BackgroundColor3 = Color3.fromRGB(35, 35, 35) personFrame.Parent = scrollingFrame local pCorner = Instance.new("UICorner") pCorner.CornerRadius = UDim.new(0, 4) pCorner.Parent = personFrame local avatarImg = Instance.new("ImageLabel") avatarImg.Size = UDim2.new(0, 50, 0, 50) avatarImg.Position = UDim2.new(0, 6, 0.5, -25) avatarImg.BackgroundTransparency = 1 avatarImg.Image = players:GetUserThumbnailAsync(targetUserId, Enum.ThumbnailType.HeadShot, Enum.ThumbnailSize.Size150x150) avatarImg.Parent = personFrame local imgCorner = Instance.new("UICorner") imgCorner.CornerRadius = UDim.new(1, 0) imgCorner.Parent = avatarImg local infoLabel = Instance.new("TextLabel") infoLabel.Size = UDim2.new(0.40, 0, 1, 0) infoLabel.Position = UDim2.new(0, 62, 0, 0) infoLabel.BackgroundTransparency = 1 infoLabel.TextColor3 = Color3.fromRGB(220, 220, 220) infoLabel.TextSize = 10 infoLabel.Font = Enum.Font.SourceSansBold infoLabel.TextXAlignment = Enum.TextXAlignment.Left infoLabel.Parent = personFrame local samlaLabel = Instance.new("TextLabel") samlaLabel.Size = UDim2.new(0.26, 0, 1, 0) samlaLabel.Position = UDim2.new(0.48, 0, 0, 0) samlaLabel.BackgroundTransparency = 1 samlaLabel.TextColor3 = Color3.fromRGB(80, 255, 80) samlaLabel.TextSize = 11 samlaLabel.Font = Enum.Font.SourceSansBold samlaLabel.TextXAlignment = Enum.TextXAlignment.Center samlaLabel.Parent = personFrame local copyBtn = Instance.new("TextButton") copyBtn.Size = UDim2.new(0, 22, 0, 22) copyBtn.Position = UDim2.new(0.75, 0, 0.5, -11) copyBtn.BackgroundColor3 = Color3.fromRGB(50, 50, 180) copyBtn.TextColor3 = Color3.fromRGB(255, 255, 255) copyBtn.Text = "📋" copyBtn.TextSize = 11 copyBtn.Font = Enum.Font.SourceSansBold copyBtn.Parent = personFrame local cCorner = Instance.new("UICorner") cCorner.CornerRadius = UDim.new(0, 4) cCorner.Parent = copyBtn local deleteBtn = Instance.new("TextButton") deleteBtn.Size = UDim2.new(0, 22, 0, 22) deleteBtn.Position = UDim2.new(0.88, 0, 0.5, -11) deleteBtn.BackgroundColor3 = Color3.fromRGB(180, 40, 40) deleteBtn.TextColor3 = Color3.fromRGB(255, 255, 255) deleteBtn.Text = "X" deleteBtn.TextSize = 11 deleteBtn.Font = Enum.Font.SourceSansBold deleteBtn.Parent = personFrame local dCorner = Instance.new("UICorner") dCorner.CornerRadius = UDim.new(0, 4) dCorner.Parent = deleteBtn local accumulatedTime = 0 local isOnline = true local enterCount = 0 local leaveCount = 0 local active = true local currentSamlaText = "00:00:00" infoLabel.Text = string.format("%s\nالخروج: %d\nالدخول: %d", name, leaveCount, enterCount) local removeConn = players.PlayerRemoving:Connect(function(leftPlayer) if leftPlayer.UserId == targetUserId then leaveCount = leaveCount + 1 isOnline = false infoLabel.Text = string.format("%s\nالخروج: %d\nالدخول: %d", name, leaveCount, enterCount) end end) local addConn = players.PlayerAdded:Connect(function(joinedPlayer) if joinedPlayer.UserId == targetUserId then enterCount = enterCount + 1 isOnline = true infoLabel.Text = string.format("%s\nالخروج: %d\nالدخول: %d", name, leaveCount, enterCount) end end) trackedPlayers[targetUserId] = { frame = personFrame, stop = function() active = false if removeConn then removeConn:Disconnect() end if addConn then addConn:Disconnect() end end } copyBtn.MouseButton1Click:Connect(function() local infoTextToCopy = string.format("اللاعب: %s | الخروج: %d | الدخول: %d | الصملة: %s", name, leaveCount, enterCount, currentSamlaText) if setclipboard then setclipboard(infoTextToCopy) end end) deleteBtn.MouseButton1Click:Connect(function() active = false if removeConn then removeConn:Disconnect() end if addConn then addConn:Disconnect() end trackedPlayers[targetUserId] = nil personFrame:Destroy() end) task.spawn(function() while active and personFrame.Parent do task.wait(1) if not active then break end if isOnline then accumulatedTime = accumulatedTime + 1 end local hours = math.floor(accumulatedTime / 3600) local mins = math.floor((accumulatedTime % 3600) / 60) local secs = accumulatedTime % 60 currentSamlaText = string.format("%02d:%02d:%02d", hours, mins, secs) infoLabel.Text = string.format("%s\nالخروج: %d\nالدخول: %d", name, leaveCount, enterCount) samlaLabel.Text = "الصملة:\n" .. currentSamlaText end end) end addButton.MouseButton1Click:Connect(function() searchAndAdd(textBox.Text) textBox.Text = "" end) end) local isWindowVisible = true floatingIcon.MouseButton1Click:Connect(function() if mainFrame then isWindowVisible = not isWindowVisible mainFrame.Visible = isWindowVisible local tweenService = game:GetService("TweenService") tweenService:Create(floatingIcon, TweenInfo.new(0.1), {Size = UDim2.new(0, 40, 0, 40)}):Play() task.wait(0.1) tweenService:Create(floatingIcon, TweenInfo.new(0.1), {Size = UDim2.new(0, 45, 0, 45)}):Play() end end)