How to send arguments in :Once(localfunctionexample)

so i have this line of code:

hitbox.Touched:Once(dmg)

and i was wondering how to send the argument of “char” with it

1 Like

Basically do this:

hitbox.Touched:Once(function(hit)
    dmg(char) 
end)
2 Likes

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.