That why I come to here to ask if someone able to help me and thanks btw
Scripts
How to disable hook for 1round in 60 min
How to disable hook for 1round in 60 min
1

freehook or a boolean variable that overlaps the original hit hook.
freehook you could remove a "hooked" functionaddhook("<your hook>","switchfunc")
function original_one(params)
	//do something
end
function original_two(params)
	//do something else
end
function switchfunc(params)
	if condition then
		original_one(params)
	else
		original_two(params)
	end
end
Mami Tomoe was faster
1
