Making an image pop up for a single player

Is it possible to make an image show up for only a specific person?

you can try to pop the image up in dialogue?

no, i was thinking like an image that would cover your entire screen, like a jumpscare.

using dialogue can cover the whole screen with HTML&CSS

1 Like

oh can you show me a raw dialogue

You put this code into dialogue and then it will work:

<style>
#modd-dialogue-modal {
background-image: url(/*your url here*/);
background-repeat: no repeat;
background-size: cover;
/* you can also use background-color to make it plain colour */
}
.modal-content {
visibility: hidden;
}
</style>
2 Likes