I would like a script that would add a soulgem if you get a critical hit using something like sparks. Instead of disentegrate it would just add the soulgem to your inventory or even the corpse. I have been looking through several scripts and have tried adding them to the magic effect but nothing seems to work. For example I added this script to the PerkDisintegrateConcAimed but it does not add the anything. Scriptname _Soul_Gem_test extends ObjectReference {Testing Soul gem give.} SoulGem Property SoulGemGrand auto Function OnActivate(ObjectReference akActionRef) Game.GetPlayer().AddItem(SoulGemGrand, 2, false) endfunction