1
2
3
4
2
3
4
addhook("hit","HIT")
function HIT(id,source)
return 1
end
Scripts
Hit Return 1
Hit Return 1
1

addhook("hit","HIT")
function HIT(id,source)
return 1
end
hit hook else? If so, remove that. Or for the last chance use this:addhook("hit","_hit")
function _hit(id,source)
return 1
end
TheVillager: What do you want it to do?
Yates: I want no damage
TheVillager: Your script should work but I bet you are using another script which also uses hit hook that's why it doesn't work. Try to add priority.addhook("hit","HIT",999)
Hajt: this working
1
