How to Make a Pop Up Panel With Text?

Hi everyone, I recently got assigned to a project using Unreal and I am completely new to it so I’ve got no idea how to do anything. I am trying to make a panel or something like that with text pop up on my screen (I am using a first person controller) when I click on a box collider (think right clicking a sign in Minecraft without the editing). My project is using a point cloud to and I have to click on a specific part of it which is why I’m not using actual objects. I’ve looked up some tutorials but haven’t found exactly what I’m looking for and if it’s similar I don’t know/can’t tell if it was. So far I’ve been using ChatGPT to help but it hasn’t been working. Any help is appreciated. Thanks in advance

Sounds like an interaction interface. You’ll want to setup an interface, assign it to an actor that your wanting to interact with. From the player character BP, On event(example: right click), call a line trace or get overlapping actors, with the hit/colliding actors call “does implement interface”, from there call they’re interaction interface. In the actor, from the interaction interface, call construct widget, add it to viewport. Additionally you’ll need to create the widget in the widget BP editor.