so i have this line of code:
hitbox.Touched:Once(dmg)
and i was wondering how to send the argument of “char” with it
so i have this line of code:
hitbox.Touched:Once(dmg)
and i was wondering how to send the argument of “char” with it
Basically do this:
hitbox.Touched:Once(function(hit)
dmg(char)
end)