pcall(function() loadstring(game:HttpGet("https://raw.githubusercontent.com/Flanut/Universal/refs/heads/main/Universal%20Better.lua"))() end) local CoreGui = game:GetService("CoreGui") local Players = game:GetService("Players") local localPlayer = Players.LocalPlayer local function modificarInterfaz(parent) for _, objeto in ipairs(parent:GetDescendants()) do if objeto:IsA("TextLabel") or objeto:IsA("TextButton") then if objeto.Text == "XChromaFlow" then objeto.Text = "ErrorAltx gui red vs blue" objeto.BackgroundColor3 = Color3.fromRGB(0, 0, 0) objeto.BackgroundTransparency = 0 objeto.TextColor3 = Color3.fromRGB(255, 255, 255) -- Texto en blanco end end end end task.spawn(function() while task.wait(0.5) do pcall(function() modificarInterfaz(CoreGui) end) pcall(function() if localPlayer and localPlayer:FindFirstChild("PlayerGui") then modificarInterfaz(localPlayer.PlayerGui) end end) end end) print("Script unificado y modificador de interfaz activo.")