all players will get image over them.
i have code but this is working for only one player who pressed button.
please help me
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
function initArray(m) local array = {} for i = 1, m do array[i]=0 end return array end glowing=initArray(32) addhook("usebutton","asdfg") function asdfg(id,x,y) if entity(x,y,"name") == 'glower' then glowing[id]=image("gfx/glower.png",1,1,200+id,id) end end