1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
s=0 h=0 if player==nil then player={} end huddd={} atimer=0 addhook("spawn","txt") function txt(id) parse('hudtxt2 '..id..' 49 "©220050050Kills '..player(id, 'score')..' : Deaths '..player(id, 'deaths')..'" 12 116') end addhook("second","second") function second(player,id) 	atimer=atimer+1 	if atimer>=5 then 		atimer=0 		parse('hudtxt3 '..id..' "©220050050'..player(h,"name")..' got the '..player(id, 'score')..' score" 12 116') 	end end