Is it more better using individual remote events if theyre going to be fired a lot by players in the tools, or use a single remote for everyone? Does it make a difference? And if I do use one remote, how would I go around with adding a cooldown for whoever fires the remote, and not the remote for everyone else?
How I prevent remote spam using tick and the guns firerate:
if (tick() - delay < gun.rate) then
return
end
What could I do to make this cd for whoever fired the remote and not the remote?