What should i use for popup?

I am unsure on what method i should go about select areas on the map where billboard gui will appear and disappear, depending if you are in the region or not. Is it bad to use touched and touchended on blocks that cover the region, if so what is a better way to approach this?

1 Like

Am not sure about what you’re trying to archive but look for Region3, it may help you with your task.

However region3 aren’t that precise. so if you want more precise checking, Look for this:

how would i fire an event when a player enters and leaves the region3 without holding wait() loop

1 Like

you should do this checks in the server, and keep track of players that entered and exited. when the player just entered or is no longer in the region, you remove the player from the table and you fire the event pretty much.

but is the only way to check if a player is in the region to hold a loop and keep using findpartsinregion3?

1 Like

You can either do a loop. or create a part in the region and listen to the touched event
It really depends on the importance of that element in your game
And maybe there is someone who has better solution, good luck!

1 Like

alright thanks for your help ill have a little play with it :slight_smile:

1 Like