TobiR999 Posted 6 hours ago Posted 6 hours ago 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 penetrate Submitter TobiR999 Submitted 08/19/26 Category Sexual Content 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
TobiR999 Posted 4 hours ago Author Posted 4 hours ago 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 penetrate Submitter TobiR999 Submitted 08/19/26 Category Sexual Content 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
JohnConquest12 Posted 53 minutes ago Posted 53 minutes ago where do find the FusionGirl-VagAnusMod at? I can't seem to find it
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now