How can i disable ALL keys when inside box trigger?

hello, how can i disable all keys for only a couple of seconds when my character is inside a trigger box? if you guys have any screenshots of the blueprints please leave it in the comments because i just started using ue4 a few weeks ago and im still a noob.
Thanks!

you simply need to have a overlap event, then identify the overlapping actor through something like a cast, disable the characters input, delay, then finally re-enable input.

as you can see in the example below we start with the on begin overlap event. next we compare the overlapping actor to the player character with the equal node. from there its pretty self explanatory we disable the input with a target of the player character.

note that this is currently set to only work on the player character so you would need to modify it to work on other players or if there were multiple players / actors to disable.