local starterGui = game:GetService("StarterGui") -- Mostrar notificación solo una vez usando SetCore local function showNotification() starterGui:SetCore("SendNotification", { Title = "Aim Viewer GUI Activated", Text = "Go to settings to configure the Aim Viewer.", Duration = 5, -- Duración de la notificación en segundos Button1 = "OK" }) end -- Mostrar el aimviewer repetidamente cada 3 segundos local function toggleAimViewer() showNotification() -- Ejecutar notificación una vez while true do -- Definir variables dentro del bucle local player = game:GetService("Players").LocalPlayer local gui = player.PlayerGui.gui local aimViewerFrame = gui.Settings.ScrollingFrame.aimviewer -- Hacer visible el aimviewer aimViewerFrame.Visible = true -- Esperar 3 segundos antes de repetir task.wait(3) end end -- Iniciar el loop de visibilidad del aim viewer toggleAimViewer()