Skip to main content
C. Assign Gameplay Effect in Ability
- To assign an ability, first you need to create an Effect Containers member, open GA_AttackSelf.

I've defined an effect container member with key Target.Self, because I want to group the effect based on who is the target, could be Self, Ally, or Enemy, but this is up to you again. And I add GE_Burn there. So when I do Attack, it will give Burn to our character (Suicide Ability XD).
- Then let's modify our blueprint to add a node.

We've just inserted Apply Gameplay Effect Container to Owner after print log and before end the ability. You can also do to the specific target by using the Apply Gameplay Effect Container to Target. You could see some example in AgateGASExample.
- When we play and pressed the ability, you should see our character Health is reducing at Output Log.