-new- Roblox Pilgrammed Script Gui -
makeToggle(moveTab, "Fly (Space to go up)", 40, function(state) _G.fly = state if state then local char = LocalPlayer.Character if not char then return end local root = char:FindFirstChild("HumanoidRootPart") local bodyVel = Instance.new("BodyVelocity") bodyVel.MaxForce = Vector3.new(10000, 10000, 10000) bodyVel.Velocity = Vector3.new(0, 0, 0) bodyVel.Parent = root
-- Combat Tab local combatTab = Instance.new("Frame") combatTab.Name = "Combat" combatTab.Size = UDim2.new(1, 0, 1, 0) combatTab.BackgroundTransparency = 1 combatTab.Visible = true combatTab.Parent = content
-- 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
UserInputService.InputBegan:Connect(function(input) if not _G.fly then return end if input.KeyCode == Enum.KeyCode.Space then bodyVel.Velocity = Vector3.new(0, 50, 0) elseif input.KeyCode == Enum.KeyCode.LeftShift then bodyVel.Velocity = Vector3.new(0, -50, 0) end end) UserInputService.InputEnded:Connect(function(input) if not _G.fly then return end if input.KeyCode == Enum.KeyCode.Space or input.KeyCode == Enum.KeyCode.LeftShift then bodyVel.Velocity = Vector3.new(0, 0, 0) end end) end end) -NEW- ROBLOX Pilgrammed Script GUI
-- 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
local toggled = false toggleBtn.MouseButton1Click:Connect(function() toggled = not toggled toggleBtn.Text = text .. (toggled and " ✅" or " ❌") callback(toggled) end) end
-- 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 "Fly (Space to go up)"
-- Movement Tab local moveTab = Instance.new("Frame") moveTab.Name = "Movement" moveTab.Size = UDim2.new(1, 0, 1, 0) moveTab.BackgroundTransparency = 1 moveTab.Visible = false moveTab.Parent = content
-- 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
makeToggle(miscTab, "Auto-collect loot", 40, function(state) _G.autoLoot = state while _G.autoLoot do wait(0.3) local lootFolder = workspace:FindFirstChild("Drops") or workspace:FindFirstChild("Loot") if lootFolder then for _, item in ipairs(lootFolder:GetChildren()) do if item:IsA("BasePart") and item:FindFirstChild("TouchInterest") then local char = LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then char.HumanoidRootPart.CFrame = item.CFrame wait(0.1) end end end end end end) 10000) bodyVel.Velocity = Vector3.new(0
-- 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)
-- Create ScreenGui local gui = Instance.new("ScreenGui") gui.Name = "PilgrammedHub" gui.Parent = game:GetService("CoreGui")
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)
makeToggle(miscTab, "Instant respawn", 90, function(state) if state then LocalPlayer.CharacterAdded:Connect(function(char) wait(0.2) char:FindFirstChild("Humanoid").Health = char:FindFirstChild("Humanoid").MaxHealth end) end end)