idk how to do it can i please have some help??? like damage only Zombie and not humanoid oh and Zombie is the name of the humanoid
If I understand correctly, you only want humanoids with the name of Zombie to take damage from a gun. In the gun, you should look through the script and find the function that contains a line that says
1 | Humanoid:TakeDamage(number) |
or
1 | Humanoid.Health = Humanoid.Health - number |
you should add an if statement to check if the humanoid's name is Zombie -
1 | if Humanoid.Name = = "Zombie" then |
And if the name is Zombie then it will trigger the function to damage the zombie. If you need any more help just ask!