-new- Roblox Pilgrammed Script Gui -

local toggled = false toggleBtn.MouseButton1Click:Connect(function() toggled = not toggled toggleBtn.Text = text .. (toggled and " ✅" or " ❌") callback(toggled) 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

makeToggle(combatTab, "Auto-Farm (nearby enemy)", 40, function(state) _G.autoFarm = state if state then RunService.RenderStepped:Connect(function() if not _G.autoFarm then return end local enemies = workspace:FindFirstChild("Enemies") or workspace:FindFirstChild("Mobs") if enemies then for _, enemy in ipairs(enemies:GetChildren()) do if enemy:FindFirstChild("Humanoid") and enemy.Humanoid.Health > 0 then local char = LocalPlayer.Character if char and char:FindFirstChild("HumanoidRootPart") then char.HumanoidRootPart.CFrame = enemy.HumanoidRootPart.CFrame * CFrame.new(0, 0, 4) wait(0.1) -- attack (simulate click) game:GetService("VirtualUser"):Button1Down(Vector2.new(0,0)) wait(0.05) game:GetService("VirtualUser"):Button1Up(Vector2.new(0,0)) end break end end end end) end end)

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

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

makeToggle(moveTab, "Speed boost (x3)", 90, function(state) _G.speed = state local char = LocalPlayer.Character if char and char:FindFirstChild("Humanoid") then char.Humanoid.WalkSpeed = state and 48 or 16 end end)

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) local toggled = false toggleBtn

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)

-- 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

-- Tab buttons local tabs = {"Combat", "Movement", "Player", "Misc"} local tabButtons = {} local currentTab = "Combat" 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)

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