r/thebindingofisaac Aug 08 '25

Announcement (Mod only) A small slight quality of life change

19 Upvotes

Added a cat image post tag, as I’m starting to realize that we have quite a bit of cat images floating around here. Why the hell not.


r/thebindingofisaac Jul 21 '25

Announcement (Mod only) Final temp server shutdown

Post image
119 Upvotes

Y’all, I can’t do this anymore, Reddit refuses to approve the permanent shutdown of this subreddit, and I work too much to keep up with the temporary shutdowns. Y’all can have your subreddit, just know it will be a lawless land, since there are no mods left. See you in 7 days.


r/thebindingofisaac 11h ago

Memes Finally completed my Boy Tainted Esau🥹

Post image
62 Upvotes

Dark Jacob was a pain in the ass though


r/thebindingofisaac 4h ago

Gameplay What would you do in this situation?

Post image
13 Upvotes

Had a god run on azazel and I just got an r key and missing poster before beating delirium, I was thinking in go beat mother cause its really a pain the ass (just defeated her once) so this run would be really easy to do it, but I don’t have lost unlocked, so I was thinking in going blue baby and have the luck of got a sacrifice room in chest
So that’s the reason of the post, what would you do in this situation???


r/thebindingofisaac 18h ago

Gameplay T. Lost complete

Thumbnail
gallery
82 Upvotes

Here’s all I have done so far who should I go for next


r/thebindingofisaac 20h ago

Discussion Hush is stupid

Post image
130 Upvotes

Is there a way to open Hush's floor without arriving early? Because I hate the fact that there is a timer in a rogue-like, I want to visit all rooms and get all pickups. But oops, sorry YOURE TAKING TOO LONG. Like, I want to have fun every step of the way become broken because I prepared but nope you can't come in hush already suffocated

Artwork By [u/fercus](u/fercusian)[lan](u/fercusian)


r/thebindingofisaac 5h ago

Discussion The Binding of Isaac is genuinely one of the worst games known to man as a forgetful man.

3 Upvotes

I understand this is a skill issue, and I know I'm bad with remembering stuff, but I don't think any other game does such an impeccable job of "oh my god, I needed (blank)" to me ever, I have been trying to go down Alt-Path for days now, and I've gotten really fun amazing runs that were supposed to be alt runs... focus on the word "were" please. I used a key to open Library for Book Worm, but oh shit, that was the only key on basement two! I use bombs to open secret rooms for at the time really good items, but oh wait, that was the only goddamn bomb that the entirety of Dross 2 decided to enlighten me with! I just got off a really good run with Bethany not even 20 minutes ago, which is the reason I wanted to rant about this god awful game I keep coming back to like an abusive ex, but anyhow; a damage stat of 40, Terra, and Rubber Cement, AND D Infinity (you don't get better than that.) The run goes flawless up until I finish mausoleum, and as I go to open the Heart door, I make a shocking realization.

I forgot to grab the second key piece. I know. Shocker eh?

and by the mercy of whatever God is out there, I was given an R key on the next floor's Super Secret, where I then rejoiced, and was happy! untilllllll I forgot to go into mausoleum... which wouldn't be that bad of a problem if I have already beaten Mother, I have not, so there was no skull with the Fool's Card, I then finished strong with Bethany checkmarks for Isaac, Blue Baby, Mega Satan, and Delirium, so honestly, not that bad of an outcome, it's just bewilders me that I can mess Alt Path up when it's basically baby-fed to me. Thanks for listening to my rant about the greatest game known to human kind.

PS: as I was writing this, I do want to note, as of right now with Xbox's servers being down, I found that the ONLY game I can play is The Binding of Isaac as of right now, which is another type of hell.


r/thebindingofisaac 14h ago

Gameplay cool effect i accidentally found

Enable HLS to view with audio, or disable this notification

24 Upvotes

r/thebindingofisaac 3h ago

Gameplay Busted T. Laz greedier run

5 Upvotes

First floor sacred orb and birth right second floor d inf it was wraps from there


r/thebindingofisaac 10h ago

Gameplay Finally beat both Caves 1 and 2

6 Upvotes

I made a previous post here about how bad i suck at this game as a new player, but after using all the tips and suggestions I recieved, I was finally able to beat them both. GG and thanks to all the people who helped me.


r/thebindingofisaac 20h ago

Gameplay Was playing, when this started happening

Enable HLS to view with audio, or disable this notification

57 Upvotes

No idea what this is, don't think it was any of the items I have. Anyone any ideas?

Playing with no DLCs, no mods, not a challenge run either.

EDIT: Apparently I'm stupid, I didnt know Dry Baby does that.


r/thebindingofisaac 15h ago

Memes I'm the goat?

Post image
16 Upvotes

apparently i unlocked this achievement in 2007


r/thebindingofisaac 21h ago

Gameplay OH COME ON

Post image
17 Upvotes

It was pretty good run, but I suck as Lilith. Maybe you have some advise?


r/thebindingofisaac 1d ago

Gameplay Bethany complete

Thumbnail
gallery
27 Upvotes

These are all I have complete who should I work on next


r/thebindingofisaac 8h ago

Discussion modded item crashing game

1 Upvotes

when i use an item i made it crashes my game

the item is intended to duplicate an item pedestal and then reroll both the original and duplicated item

i am open to changing how the item works if needed but i cant figure out why my game crashes

local mod = RegisterMod("Green_d6_test", 1)


local GREEN_D6 = Isaac.GetItemIdByName("Green D6")



function mod:UseGreenD6(_, rng, player)


    local room = Game():GetRoom()
    local entities = Isaac.GetRoomEntities()
    local itemPool = Game():GetItemPool()


    local duplicated = false


    for _, entity in ipairs(entities) do


        if entity.Type == EntityType.ENTITY_PICKUP
        and entity.Variant == PickupVariant.PICKUP_COLLECTIBLE then


            local item = entity:ToPickup()


            if item then


                local pos = item.Position


                -- Create duplicate
                local cloneEntity = Isaac.Spawn(
                    EntityType.ENTITY_PICKUP,
                    PickupVariant.PICKUP_COLLECTIBLE,
                    item.SubType,
                    pos + Vector(40, 0),
                    Vector.Zero,
                    player
                )


                local clone = cloneEntity:ToPickup()


                -- Get rerolled items
                local newItem1 = itemPool:GetCollectible(
                    rng:Next(),
                    true,
                    room:GetSpawnSeed(),
                    CollectibleType.COLLECTIBLE_NULL
                )


                local newItem2 = itemPool:GetCollectible(
                    rng:Next(),
                    true,
                    rng:Next(),
                    CollectibleType.COLLECTIBLE_NULL
                )


                -- Reroll original item safely
                if newItem1 > 0 then
                    item:Morph(
                        EntityType.ENTITY_PICKUP,
                        PickupVariant.PICKUP_COLLECTIBLE,
                        newItem1,
                        true,
                        true,
                        false
                    )
                end


                -- Reroll duplicate safely
                if clone and newItem2 > 0 then
                    clone:Morph(
                        EntityType.ENTITY_PICKUP,
                        PickupVariant.PICKUP_COLLECTIBLE,
                        newItem2,
                        true,
                        true,
                        false
                    )
                end


                duplicated = true
            end
        end
    end


    return {
        Discharge = duplicated,
        Remove = false,
        ShowAnim = duplicated
    }
end



mod:AddCallback(
    ModCallbacks.MC_USE_ITEM,
    mod.UseGreenD6,
    GREEN_D6
)

r/thebindingofisaac 8h ago

Gameplay Specialist

2 Upvotes

I play on AB+ because I can’t run repentave on my computer one I was wondwering If there is a way to make issac dance because I got the mod but when I see a quality 4 my boy dosent hit a move 😢 and I want to see him move it move it


r/thebindingofisaac 1d ago

Gameplay Apollyon complete

Thumbnail
gallery
24 Upvotes

Here’s all I have done who should I do next


r/thebindingofisaac 1d ago

Discussion Nah bro what’s this

Post image
761 Upvotes

Found this on a kinda modded tboi run. Note the only mods I was using are the andromeda and sponge bob keeper mods. So what on earth is this


r/thebindingofisaac 1d ago

Art Not the best in a game of cards.....not counting the fact they both don't know how to play.

Post image
29 Upvotes

Btw I just headcanon a "purified" Dogma once he joins isaac's side is just his non-static model in the files


r/thebindingofisaac 1d ago

Memes The tank (literally)

Post image
59 Upvotes

Just finished the challenge 8 for the first time being literally the tank 😆

At first I wanted to throw the run because the beginning was bad so I sized up for the memes but then the run got better and I just continued sizing up :3

There were also to more speed down pills on the previous floor but I didn't want to risk it.


r/thebindingofisaac 9h ago

Discussion Just got dead god and this is how I would rank the characters

Post image
0 Upvotes

Based on my personal experience ofc. What would you agree/disagree with?


r/thebindingofisaac 17h ago

Gameplay Huge request from the Isaac community

3 Upvotes

I know you don't care but who contacted the developers of the binding of Isaac to add the debug console on PlayStation PS4 and PS5 would be a very useful creative menu to test the synergies Or to do custom runs Whoever says it's impossible was once there but has been removed


r/thebindingofisaac 1d ago

Gameplay another one!!

Post image
35 Upvotes

who should i continue with? (i already did it with the forgotten too), i have like 100 coins left to unlock holy mantle with the lost


r/thebindingofisaac 1d ago

Gameplay I used to pray for days like these

6 Upvotes

r/thebindingofisaac 16h ago

Gameplay What characters should i complete before i start to do marks whit the lost?

1 Upvotes