local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "🔥 w00lgui reborn | by w00lkidd", LoadingTitle = "Cargando Protocolos Ilegales...", LoadingSubtitle = "by w00lkidd", ConfigurationSaving = { Enabled = false }, Theme = "Ocean" -- Bordes Azules Neon }) -- Variables Globales local player = game.Players.LocalPlayer local w00lID = "rbxassetid://86490838877844" local rawID = "86490838877844" -- ========================================== -- CASILLA: HACKS MUY ILEGALES PARA JUEGOS -- ========================================== local IllegalTab = Window:CreateTab("HACKS MUY ILEGALES PARA JUEGOS", "unlocked") IllegalTab:CreateSection("⚠️ DESTRUCCIÓN TOTAL DEL MAPA") IllegalTab:CreateButton({ Name = "☣️ DECAL SPAM GLOBAL (w00lkidd ID)", Callback = function() Rayfield:Notify({Title = "Ilegal", Content = "Inyectando texturas en el servidor...", Duration = 4}) -- Intento de replicación remota (Global) for _, v in pairs(game:GetDescendants()) do if v:IsA("RemoteEvent") then local n = v.Name:lower() if n:find("paint") or n:find("decal") or n:find("spray") or n:find("place") then v:FireServer(w00lID, Vector3.new(0,0,0)) v:FireServer(rawID) end end end -- Aplicación masiva en el mapa for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then local d = Instance.new("Decal", obj) d.Texture = w00lID d.Face = Enum.NormalId.Front local d2 = Instance.new("Decal", obj) d2.Texture = w00lID d2.Face = Enum.NormalId.Back end end end, }) IllegalTab:CreateButton({ Name = "🌌 SKYBOX CHANGER (Protocolo w00lkidd)", Callback = function() Rayfield:Notify({Title = "Skybox", Content = "Cambiando el cielo del servidor...", Duration = 3}) -- Buscar remotos de iluminación for _, v in pairs(game:GetDescendants()) do if v:IsA("RemoteEvent") and (v.Name:lower():find("sky") or v.Name:lower():find("lighting")) then v:FireServer(w00lID) end end -- Cambiar localmente (Muy visible para ti y si hay FE débil) local l = game:GetService("Lighting") local s = l:FindFirstChildOfClass("Sky") or Instance.new("Sky", l) s.SkyboxBk = w00lID; s.SkyboxDn = w00lID; s.SkyboxFt = w00lID; s.SkyboxLf = w00lID; s.SkyboxRt = w00lID