I want that when a player joins the server an image appears, but only for him.
I need something like this
HUDImage[id]
I want it to be with this same code, just tell me how I can do it so that it appears only to the player who connects and that the image does not appear to all of us who are playing there
1
2
3
4
5
6
2
3
4
5
6
function SoundOnJoin(id) HUDImage = image('gfx/img.png', 320 , 240, 2) timer(3000, "hideHUDImage", nil, 1) end addhook('join', 'SoundOnJoin')
thanks so much