How can i display the Ingame Time

Hi,
I have currently created a slot based save system and now i want to display my current play time on the slots.
So how can i get the time and how can i display it.

Thank you ^^

Simply make timer and store it’s value when you need to save and restore timer on load to continue count time. Alternatively you can count time by calculating difference between time you started and time you saved explained here:
Keeping track of playtime - Programming & Scripting - Epic Developer Community Forums but if oyu want to display time live in menu you will need a timer. Here you have info how to use timers in blueprints: https://docs.unrealengine.com/en-us/Gameplay/HowTo/UseTimers/Blueprints

Thanks man, that is what I need ^^