in the folder: sys/lua/autorun
With this code bellow, only the terrorists (zombie) will wait 10 seconds. Or you can just do Trigger Start, Trigger Delay and DynWall.
1
2
3
4
5
6
7
8
9
10
2
3
4
5
6
7
8
9
10
addhook("startround","_startround") function _startround() freetimer() for _,id in pairs(player(0,"table")) do if player(id,"team")==1 then parse("speedmod "..id.." -100") timer(10000,"parse","speedmod "..id.." 0") end end end