How to load save files in save folder in unreal?

I have 3 files in my save folder in unreal. They are X,Y,Z float files. How would I load them from UMG widget on button pressed. I got Easy Save and Load system from Unreal Market but the Loading part of it doesn’t work. So I just wana make it manually. A bit complicated to me. Help these noob out. Thank you!!!

The hell is a “X,Y,Z float files”? :smiley:

You can load *.csv (comma separated values) into a DataTable and push it into an array. Not during run-time, though.
Is it OK to load the float data in the editor? You can then use it in your widget, of course.

Or will you be constantly updating the data in the files during gameplay?

Ok thank you for that!! I will try it out.