Is it possible to do this

I’m trying to use a single module script on multiple characters at once. To do so, I assume I have to do something like
require(game.ServerScriptService.gore).function(value,value,value)
can’t seem to figure it out though, help would be appriciated.

To run the function on multiple characters you should either run the function once for each character or have the function accept a table of players as which players it should run on. How I would do it:

local playersToRunOn = {player1,player2,player3}
for i,v in pairs(playersToRunOn) do
gore.function(v)
end
3 Likes