I want to make this be for ct and tt It is a circle surrounded players and it is now a yellow circle and I want to make it blue relative to for counter terrorism and red for terrorist
exapmle
and
This is code
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
if sample==nil then sample={} end sample.glowing={} -------------------------------------- -- GLOW -- -------------------------------------- -- Glow Function function sample.glowing.makeallglow() 	for i=1,32,1 do 		id=image("gfx/sprites/flare2.bmp",1,1,100+i)	-- Create image @ Player 		imagecolor(id,200,200,0)						-- Make image yellow 		imageblend(id,1)								-- Make image glow 		imagealpha(id,0.5)								-- Decrease Glow Strength 	end end -- Make Glow instantly after starting server sample.glowing.makeallglow() -- Make Glow after roundstart (because images are deleted on roundstart!) addhook("startround","sample.glowing.startround") function sample.glowing.startround() 	sample.glowing.makeallglow() end