I have a game, The problem today is I am making a gun for the game and I wanna make The Gun go rapid. All I know is how to make a gun go 1 shot.
OK, i'd probably need the actual gun for this. If your using tools I suppose you could change it from MouseClick to
Down = false Mouse.Button1Down:connect(function() Down=true end) Mouse.Button1Up:connect(function() Down=false end) while true do wait() if Down then -- Shoot Code -- end end
or just do something similar to that.
Well, I hope this helped... It probably didn't.