It’s not that I don’t understand what local and global variables are.
It’s just that sometimes at the start I’m not sure wheither I should setup a function and I make a blueprint with just global variables.
Then refactoring I collapse part of the blueprint to function to make it more readable.
Then to keep it clean I want to make local all global variables that were used only in this function and it seems there is no simple way to do it - I need to create local duplicate for each variable and then go manually through each occurence and replace global variable with local