-- Crea el ScreenGui principal que resiste el respawn local screenGui = Instance.new("ScreenGui") screenGui.Name = "PantallaImagenPersistente" screenGui.IgnoreGuiInset = true -- Tapa la barra superior de Roblox screenGui.ResetOnSpawn = false -- EVITA QUE DESAPAREZCA AL MORIR/RESPAWN -- Protege la interfaz de ser detectada por scripts básicos del juego if syn and syn.protect_gui then syn.protect_gui(screenGui) screenGui.Parent = game:GetService("CoreGui") elseif gethui then screenGui.Parent = gethui() else screenGui.Parent = game:GetService("CoreGui") end -- Crea el fondo gigante usando una imagen en vez de un color sólido local fondoImagen = Instance.new("ImageLabel") fondoImagen.Name = "FondoImagen" fondoImagen.Size = UDim2.new(1, 0, 1, 0) -- Ocupa el 100% de la pantalla fondoImagen.Position = UDim2.new(0, 0, 0, 0) fondoImagen.Image = "rbxassetid://12682732708" -- Tu ID aplicado correctamente fondoImagen.BorderSizePixel = 0 fondoImagen.Active = true -- Bloquea clics hacia los elementos de atrás fondoImagen.BackgroundTransparency = 1 -- Hace invisible el fondo del recuadro para que solo se vea la imagen fondoImagen.ScaleType = Enum.ScaleType.Stretch -- Estira la imagen para cubrir toda la pantalla fondoImagen.Parent = screenGui