Naming Events, Variables, and functions

Been wondering I know in code c++ we name things using no spaces all in one word:
Ex: int hungerBar = 100;
But in blueprints naming is it alright to just name everything with underscores?
EX: Hunger_Bar = 100;

Hey there @WishyouwereME! So “best practices” is one of those things that is a bit different for everyone. It won’t break anything to use the underscores in BP variable names, but considering in blueprints you can use spaces for variable names many users do. I generally maintain the same convention without space or underscores personally, but having the spaces helps readability when working with lots of blueprint variables.