Jump to content

Female Genitals Morph Control with Key


Recommended Posts

Posted

Female Genitals Morph Control with Key

View File

this Mod requires

FusionGirl-VagAnusMod
FusiongGirl 1.80 or above for the textures
1.10.163 + F4SE 0.6.23 or higher
ZaZ Extended Skeleton
ZeX In-Game Sliders

fallout4 bodyslide to create the body

 

what does it

it opens the vagina with Key T and the anus with Key Y and closes them
The F4SE (Fallout 4 Script Extender) hex key codes (DirectX scan codes) for T and Y are 0x54 for T and 0x59 for Y.


so now you can use all sex animation mods no matter if they have
animated vagina or anus, so no more dicks hitting against closed
doors.

 

I havent tested if it works with CBBE only FusionGirl-VagAnusMod

 

 

my thanks go to DeepSeek AI & ChatGPT  I never made a scripted mod its my first one

 

if you use MO2  you have to create a mod folder an put it below ZeX In-Game Sliders because it adds slider for vagina and anus penetrate

 

 

For Modders who ever likes to use this mod and to modify it or whatever can do with it, just do it! Its public opensource for everyone to use and intigrate!

 

it took me 3 days with AI to create it without knowledge 😄

Cant believe I made it, well it was teamwork!

For people who never tried it, just try use AI, I hope that AI gets better for us common people to create more mods and stuff!

 

anuskeyY.png.9862cfc1bcf27f595455cd24b1e6da1f.pngvaginakeyT.png.854eac70dd777b6b9f1c935adb005f55.png

 

FusionGirl-VagAnusMod.png

Clipboard_08-19-2026_01.png


  • Submitter
  • Submitted
    08/19/26
  • Category
  • Requirements
    FusionGirl-VagAnusMod
    FusiongGirl 1.80 or above for the textures
    1.10.163 + F4SE 0.6.23 or higher
    ZaZ Extended Skeleton
    ZeX In-Game Sliders

 

Posted
1 hour ago, TobiR999 said:

Female Genitals Morph Control with Key

View File


this Mod requires

FusionGirl-VagAnusMod
FusiongGirl 1.80 or above for the textures
1.10.163 + F4SE 0.6.23 or higher
ZaZ Extended Skeleton
ZeX In-Game Sliders

 

what does it

it opens the vagina with Key T and the anus with Key Y and closes them
The F4SE (Fallout 4 Script Extender) hex key codes (DirectX scan codes) for T and Y are 0x54 for T and 0x59 for Y.


so now you can use all sex animation mods no matter if they have
animated vagina or anus, so no more dicks hitting against closed
doors.

 

I havent tested if it works with CBBE only FusionGirl-VagAnusMod

 

 

my thanks go to DeepSeek AI & ChatGPT  I never made a scripted mod its my first one

 

if you use MO2  you have to create a mod folder an put it below ZeX In-Game Sliders because it adds slider for vagina and anus penetrateanuskeyY.png.9862cfc1bcf27f595455cd24b1e6da1f.pngvaginakeyT.png.854eac70dd777b6b9f1c935adb005f55.png

 

FusionGirl-VagAnusMod.png

Clipboard_08-19-2026_01.png


  • Submitter
  • Submitted
    08/19/26
  • Category
  • Requirements
    FusionGirl-VagAnusMod
    FusiongGirl 1.80 or above for the textures
    1.10.163 + F4SE 0.6.23 or higher
    ZaZ Extended Skeleton
    ZeX In-Game Sliders

 

last AAF_Morph_Keys.psc    for people that are intrested in modding and like to changes the values

 

 

Scriptname AAF_Morph_Keys extends Quest

; Fallout 4 1.10.163 / F4SE 0.6.23
; T = 0x54, Y = 0x59

Float currentVaginaValue = 0.0
Float currentAnusValue = 0.0
Float currentButtcheeksValue = 0.0
Bool bIsVaginaOpen = False
Bool bIsAnusOpen = False

Event OnInit()
    RegisterForKey(0x54) ; T
    RegisterForKey(0x59) ; Y
    Debug.Notification("FGM: Script initialized - T=Vagina, Y=Anus+Buttcheeks")
EndEvent

Event OnKeyDown(Int keyCode)
    Debug.Notification("FGM: Key pressed - " + keyCode)
    If keyCode == 0x54
        ToggleVagina()
    ElseIf keyCode == 0x59
        ToggleAnus()
    EndIf
EndEvent

Function ToggleVagina()
    bIsVaginaOpen = !bIsVaginaOpen
    If bIsVaginaOpen
        currentVaginaValue = 1.2
    Else
        currentVaginaValue = 0.0
    EndIf

    Actor player = Game.GetPlayer()
    If player == None
        Return
    EndIf

    Debug.Notification("FGM: Vagina setting to " + currentVaginaValue)

    BodyGen.SetMorph(player, True, "VaginaPenetrate", None, currentVaginaValue)
    BodyGen.UpdateMorphs(player)

    If bIsVaginaOpen
        Debug.Notification("Vagina morph: ON")
    Else
        Debug.Notification("Vagina morph: OFF")
    EndIf
EndFunction

Function ToggleAnus()
    bIsAnusOpen = !bIsAnusOpen

    If bIsAnusOpen
        currentAnusValue = 1.2
        currentButtcheeksValue = 1.2   ; matches your BodySlide screenshot
    Else
        currentAnusValue = 0.0
        currentButtcheeksValue = 0.0
    EndIf

    Actor player = Game.GetPlayer()
    If player == None
        Return
    EndIf

    Debug.Notification("FGM: Anus setting to " + currentAnusValue)
    Debug.Notification("FGM: Buttcheeks setting to " + currentButtcheeksValue)

    BodyGen.SetMorph(player, True, "AnusPenetrate", None, currentAnusValue)
    BodyGen.SetMorph(player, True, "ButtcheeksSpread", None, currentButtcheeksValue)
    BodyGen.UpdateMorphs(player)

    If bIsAnusOpen
        Debug.Notification("Anus + Buttcheeks morph: ON")
    Else
        Debug.Notification("Anus + Buttcheeks morph: OFF")
    EndIf
EndFunction

Posted

Which would you say provided more help. DeepSeek or ChatGPT? Ive been dabbling in patches and xEdit hell and while ChatGPT has been helpful, its not all that great

Posted
6 hours ago, Wellduhpeople said:

Which would you say provided more help. DeepSeek or ChatGPT? Ive been dabbling in patches and xEdit hell and while ChatGPT has been helpful, its not all that great

 well I needed to switch between them but I mostly I used DeepSeek, what helped was Screenshots from errors I got from compiling, ChatGPT fixed then one script, but both made the keys wrong I got this from the internet The F4SE (Fallout 4 Script Extender) hex key codes (DirectX scan codes) for T and Y are 0x54 for T and 0x59 for Y.   then it worked, I was using deppseek 80% and chatgtp 20% and did a little work by myself

Posted
9 hours ago, Wellduhpeople said:

Which would you say provided more help. DeepSeek or ChatGPT? Ive been dabbling in patches and xEdit hell and while ChatGPT has been helpful, its not all that great

I’ll jump into your conversation since I also use Google’s AI. The only sensible use case I’ve found is searching for information and links to discussions; standard search engines are far less effective at that. However, every line of code written by the AI contained bugs.

Posted

Seems to do what is advertised for me. I do see it also working when I have not used the shortcut. Could another mod be calling on this mod and turning morphs on and off?

I do use @riveth's "gape" mod.

Posted
2 hours ago, Madscout said:

Seems to do what is advertised for me. I do see it also working when I have not used the shortcut. Could another mod be calling on this mod and turning morphs on and off?

I do use @riveth's "gape" mod.

well it needs the sliders.json from MO2\mods\ZeX In-Game Sliders\F4SE\Plugins\F4EE\Sliders\ZeX-InGameSliders.esp if an other mod uses this one too to use the sliders I guess this could cause problems, do you have MO2 did you try putting at the bottom that its loaded overwriting everything else?  Only Idea I have, I guess 2 mods talking to the same slider could create problems, on thing that happens when the game plays animations and my mod is activated it addes value to the slider so anus and vagina get 1+1 or 1+1.5, to be sure I would have to check the mod and the script

Posted
4 hours ago, Samhsay said:

I’ll jump into your conversation since I also use Google’s AI. The only sensible use case I’ve found is searching for information and links to discussions; standard search engines are far less effective at that. However, every line of code written by the AI contained bugs.

I use it also for information but also for Daz3d it helped me a lot to learn new things, for Fallout4 right now like I wrote 80% deepseek, because its also not limited in usage

Posted (edited)
32 minutes ago, TobiR999 said:

well it needs the sliders.json from MO2\mods\ZeX In-Game Sliders\F4SE\Plugins\F4EE\Sliders\ZeX-InGameSliders.esp if an other mod uses this one too to use the sliders I guess this could cause problems, do you have MO2 did you try putting at the bottom that its loaded overwriting everything else?  Only Idea I have, I guess 2 mods talking to the same slider could create problems, on thing that happens when the game plays animations and my mod is activated it addes value to the slider so anus and vagina get 1+1 or 1+1.5, to be sure I would have to check the mod and the script

Thank you for the reply. I use Vortex, and seeing the mod turn on and off without my input is just a curiosity and is not a problem. Really it was  just an observation.

I did not know if another mod could influence this mod.

Edited by Madscout
Posted

Skyrim had this neat little feature that allowed collision between penises, or other objects, and the vagina and anus. Why doesn't that exist for Fallout 4 yet? Especially since Skyrim SE was basically Skyrim on the Fallout 4 engine?

Posted
On 8/25/2026 at 8:27 AM, EZK-0X said:

what is the difference between FusionGirl-VagAnusMod and the one from PotC Morph+ Patch ?

 

 

sorry I have no Idea important is my mod needs this file it overwrites it with sliders and higher values that the keys then apply, if this mod you mentioned uses later the same sliders it should work in theory as wellimage.thumb.png.7664f7554a2f35e4ed59540685e1806f.png

Posted
On 8/25/2026 at 2:53 PM, Z0mBieP00Nani said:

Skyrim had this neat little feature that allowed collision between penises, or other objects, and the vagina and anus. Why doesn't that exist for Fallout 4 yet? Especially since Skyrim SE was basically Skyrim on the Fallout 4 engine?

I have no idea the newer animations all support it but the older ones nope no Idea

Posted

image.png.ea445d0f5d940c01ed1afce13892efdc.png

 

A phyton tool to create easily own script AAF_Morph_Keys.psc with own keys and values just need to add it to your  \Fallout 4\Data\Scripts\Source\User path and use the Papyrus Compiler to create the AAF_Morph_Keys.pex which then need to be put into the mod folder in the scripts  best I could come up so far.

 

FGM TOOL.rar

Posted (edited)

I mentioned before that the mod seems to be turning on/off randomly, but I found this.

I am seeing "some" animations cause this mod to turn on, but the "T" is an already used shortcut, if you use the "sit on furniture" feature. This causes on off also.

Not a problem just observation and I have to watch for the conflict.

 

I use: "Female Genitals Morph with aditional morph values 1.2 +Anus+ButtcheeksSpread.rar"

I did not update because I am far in my current profile and did not want to start over just yet.

 

Edited by Madscout
Posted
On 8/30/2026 at 7:41 PM, Madscout said:

I mentioned before that the mod seems to be turning on/off randomly, but I found this.

I am seeing "some" animations cause this mod to turn on, but the "T" is an already used shortcut, if you use the "sit on furniture" feature. This causes on off also.

Not a problem just observation and I have to watch for the conflict.

 

I use: "Female Genitals Morph with aditional morph values 1.2 +Anus+ButtcheeksSpread.rar"

I did not update because I am far in my current profile and did not want to start over just yet. 

 

On 8/30/2026 at 7:41 PM, Madscout said:

for me it just changes with clothes you put on shoes, gloves anything like that the genitals get closed because it uses a the body.nif for the clothes, I did see it yet on animations or poses on sitting on  chair etc. because on sex animations on a chair or sofa the genitals are open, I have to check what happens in normal sitting animations or poses

 

Posted
1 hour ago, TobiR999 said:

for me it just changes with clothes you put on shoes, gloves anything like that the genitals get closed because it uses a the body.nif for the clothes, I did see it yet on animations or poses on sitting on  chair etc. because on sex animations on a chair or sofa the genitals are open, I have to check what happens in normal sitting animations or poses

 

I have not noticed (wasn't looking for) changes with clothes. Some of the mods I have keep player character nude often. I will look for this as well.

When one just sit's on furniture and you see "T" will let you wait on the furniture x hours. It is those times(I use them as save points) when I have to pay attention.

Again no complaint, I am enjoying the mod.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...