Make a basic ability into an Ultimate?

Hey there, I’d like to know how to do (if possible) that I’d make a regular ability into an ultimate. For example, for Genji, I’d take away his deflect, and want to make it an ultimate, so when he activates his ult, deflect activates instead of Dragon Blade.

You can do it pretty easily, you only need a few commands, you have Ultimate charge percent to check if the ult is ready, and Is button held(ultimate) to check if you are pressing the button.

You can prevent players from using reflect and ult by using Disallow button, and when you want to re-activate an ability you can use Allow button

So it would give you something along those line
If hero==Genji:
Then disallow button ultimate
disallow button ability 2

If ultimate charge percent==100%
Hero==Genji
Is button held(ultimate)==True
Then Allow button(ability 2)
wait 0.016
Press button(ability 2)
disallow button(ability 2)

1 Like