thanks if you reply and you will get cookies
Scripts
remove weapons from terrorist
remove weapons from terrorist
1

addhook("spawn","remove_weapons")
function remove_weapons(p,t,w,x,y)
	if player(p,"exists") and (t==1) then
		parse("strip "..id.." "..w)
	end
end
addhook("spawn","remove_weapons")
function remove_weapons(id)
	if player(id,"team") == 1 then
		return "x" --Spawn with nothing but the knife
	end
end
1
