Total number of MS taken to complete function scope in BP

I was wondering if there is a way to measure how long a Blueprint function takes to complete? From the moment the BP functions starts to the end of that function.

I found we could use TRACE_CPUPROFILER_EVENT_SCOPE_STR to measure C++ function scopes in insights but I need to measure the actual MS of a BP node function.

Hey @AnishHuey
For the amount of time taken for functions, I’d recommend Delta Seconds from Event Tick, which would give you the amount of time since the last tick.
If you multiply that value by 1000, you’ll receive the milliseconds solution.
I hope this can help!
-Zen