Global access to an actor variable

Hello,

I have a track where the players will race; andI know it will be in the level everytime… I want to have access to its Scale.Y (width) value in all blueprint classes. How can I acheive that?

Thank you.

Is the track an actor BP? If so is it the only instance of that BP in the level? If so Get Actors of All Class > For Loop > Cast to track BP > Get Scale should do the job.

Thanks Jacky… that worked.