I want to try making the gun script, automatic (rapid). But the problem is I don't know how to trigger it properly. Look down for examples.
Here's an brief-example of what I did so far:
mouse.Button1Down:connect(function() mouse.Button1Up:connect(function() game.ReplicatedStorage.ROBLOX_MP5FireEvent:FireServer(mouse.Hit.p) end)
Then here's my next one, it works fine but it shoots not automatic but pistol type. Where you have to spam click.
mouse.Button1Down:connect(function() game.ReplicatedStorage.ROBLOX_MP5FireEvent:FireServer(mouse.Hit.p) end)
mouse.Button1Down:connect(function() repeat game.ReplicatedStorage.ROBLOX_MP5FireEvent:FireServer(mouse.Hit.p) wait() until ammo = 0 --Set your requirements to shoot here, using ammo as an example end)