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

 

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

 

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

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