How to make Frame visible to specific person

If I were to have a text button on the Starter Player GUI, how would I make it where when you press that button a Frame would pop up on only your screen and not everyone on the server. I’ve tried everything and looked all around but couldn’t find anything to help me with this. Any ideas?

1 Like

If its already on the Players UI, you would simply use a local script (local scripts only affects the client) in order to display the frame. This would simply be achieved by using the MouseButton1Down property of a button, and then tweening (or just enabling in properties) the Frame to the specific location on the screen.

Here’s a video demonstrating how you could do this with tweening on a local script:

If you have any questions about the video or the process, feel free to ask me here or in messages.

Ya, I knew how this all worked but I guess when I tried using a local script when i tried doing this before, I accidentally clicked script and just never realized. Everything worked well though, thank you!