look i created script for not repeating the "!" in same cmds so when i write anything it cause to excute the all cmds :
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
if dm == nil then dm = {} end 					addhook("say","dm.say") 					cmds = { "kick" } 					 					 function get_value() 					 for word in gmatch("!", "%a+") do 						return loadstring(cmds[1]) 						end 					 end 					function dm.LOAD_STRINGS(id) 						usgn = player(id,"usgn") 					end 					function dm.say(id,cmd) 					 if cmds[1] and get_value then 						 msg("Your usgn is") 							else 							return loadstring(cmds[1]) 						 end 					end