TobiR999 Posted August 19 Posted August 19 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! 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 August 19 Author Posted August 19 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 August 20 Posted August 20 where do find the FusionGirl-VagAnusMod at? I can't seem to find it
TobiR999 Posted August 20 Author Posted August 20 7 hours ago, JohnConquest12 said: where do find the FusionGirl-VagAnusMod at? I can't seem to find it here try this, hope it helps Vagina & Anus Morphs for Fusion Girl.rar 1
riveth Posted August 20 Posted August 20 Funny I have not thought about this for jaw drop mod😅 Good job! Will try this mod soon. 2
JohnConquest12 Posted August 21 Posted August 21 14 hours ago, TobiR999 said: here try this, hope it helps Vagina & Anus Morphs for Fusion Girl.rar 152.31 MB · 2 downloads Thank you so much! 1
Wellduhpeople Posted August 21 Posted August 21 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
TobiR999 Posted August 21 Author Posted August 21 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 1
Samhsay Posted August 21 Posted August 21 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. 2
Madscout Posted August 21 Posted August 21 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.
TobiR999 Posted August 21 Author Posted August 21 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 1
TobiR999 Posted August 21 Author Posted August 21 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 1
Madscout Posted August 21 Posted August 21 (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 August 21 by Madscout 1
riveth Posted August 24 Posted August 24 Can You make same button to open and close anus / vagina? I'm running out of free keys on my keyboard
EZK-0X Posted August 25 Posted August 25 what is the difference between FusionGirl-VagAnusMod and the one from PotC Morph+ Patch ?
Z0mBieP00Nani Posted August 25 Posted August 25 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?
TobiR999 Posted August 26 Author Posted August 26 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 well
TobiR999 Posted August 26 Author Posted August 26 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
TobiR999 Posted August 26 Author Posted August 26 I am trying to get it to work but no AI could help the keys can be asinged just flashes up once and returns to none, If someone finds the error the script or json files, I am burnet out and tried out everything with AI no results Female Genitals Morph.rar AAF_Morph_Keys.psc config.json keybinds.json
TobiR999 Posted August 28 Author Posted August 28 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
Madscout Posted August 30 Posted August 30 (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 August 30 by Madscout 1
TobiR999 Posted September 1 Author Posted September 1 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 1
Madscout Posted September 1 Posted September 1 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. 1
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