-new- Roblox Pilgrammed Script Gui Today

makeToggle(combatTab, "One-shot enemies", 90, function(state) if state then local oh = getrawmetatable and getrawmetatable(game) or debug.getmetatable(game) local old = oh.__index setupvalue and setupvalue(old, 1, nil) oh.__index = newcclosure(function(self, k) if k == "Health" and self:IsA("Humanoid") and self.Parent ~= LocalPlayer.Character then return 0 end return old(self, k) end) else -- restore end end)

-- Create tabs for i, tabName in ipairs(tabs) do local btn = Instance.new("TextButton") btn.Size = UDim2.new(0, 100, 0, 25) btn.Position = UDim2.new(0, (i-1)*100, 0, 30) btn.Text = tabName btn.BackgroundColor3 = Color3.fromRGB(55, 55, 70) btn.TextColor3 = Color3.fromRGB(255, 255, 255) btn.Font = Enum.Font.Gotham btn.TextSize = 14 btn.Parent = mainFrame tabButtons[tabName] = btn

-- Main Frame local mainFrame = Instance.new("Frame") mainFrame.Size = UDim2.new(0, 450, 0, 350) mainFrame.Position = UDim2.new(0.5, -225, 0.5, -175) mainFrame.BackgroundColor3 = Color3.fromRGB(25, 25, 35) mainFrame.BorderSizePixel = 0 mainFrame.BackgroundTransparency = 0.15 mainFrame.Active = true mainFrame.Draggable = true mainFrame.Parent = gui

-- Tab content container local content = Instance.new("Frame") content.Size = UDim2.new(1, 0, 1, -30) content.Position = UDim2.new(0, 0, 0, 30) content.BackgroundTransparency = 1 content.Parent = mainFrame -NEW- ROBLOX Pilgrammed Script GUI

makeToggle(combatTab, "No ability cooldown", 140, function(state) _G.noCD = state local mt = getrawmetatable(game) local old = mt.__index mt.__index = newcclosure(function(self, k) if _G.noCD and (k == "CurrentCooldown" or k == "RemainingCooldown") then return 0 end return old(self, k) end) end)

-- Tab buttons local tabs = {"Combat", "Movement", "Player", "Misc"} local tabButtons = {} local currentTab = "Combat"

btn.MouseButton1Click:Connect(function() currentTab = tabName for _, child in ipairs(content:GetChildren()) do child.Visible = false end local tabContainer = content:FindFirstChild(tabName) if tabContainer then tabContainer.Visible = true end end) end nil) oh.__index = newcclosure(function(self

-- Misc Tab local miscTab = Instance.new("Frame") miscTab.Name = "Misc" miscTab.Size = UDim2.new(1, 0, 1, 0) miscTab.BackgroundTransparency = 1 miscTab.Visible = false miscTab.Parent = content

-- Services local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/your-link-here/MainLib/main/UILibrary.lua"))() -- ^ replace with a real pastebin/raw lib if needed, or skip (I'll use a simple built-in GUI)

-- Function to create toggle local function makeToggle(parent, text, y, callback) local toggleBtn = Instance.new("TextButton") toggleBtn.Size = UDim2.new(0, 200, 0, 30) toggleBtn.Position = UDim2.new(0, 10, 0, y) toggleBtn.Text = text .. " ❌" toggleBtn.BackgroundColor3 = Color3.fromRGB(40, 40, 50) toggleBtn.TextColor3 = Color3.fromRGB(255, 255, 255) toggleBtn.Font = Enum.Font.Gotham toggleBtn.TextSize = 14 toggleBtn.Parent = parent 25) btn.Position = UDim2.new(0

makeToggle(moveTab, "No-clip", 140, function(state) _G.noclip = state RunService.RenderStepped:Connect(function() if not _G.noclip then return end local char = LocalPlayer.Character if char then for _, part in ipairs(char:GetDescendants()) do if part:IsA("BasePart") then part.CanCollide = false end end end end) end)

-- Title local title = Instance.new("TextLabel") title.Size = UDim2.new(1, 0, 0, 30) title.BackgroundColor3 = Color3.fromRGB(45, 45, 55) title.Text = "Pilgrammed - New GUI" title.TextColor3 = Color3.fromRGB(255, 255, 255) title.Font = Enum.Font.GothamBold title.TextSize = 18 title.Parent = mainFrame