Guns dont work with mobile

I made a few guns for my game but they seem not to shoot on mobile. Like when I click on the screen they do not shoot. Anything wrong? Here is a model of my gun:
https://www.roblox.com/library/6798385842/AK47-test

1 Like

You could just send the script

My guess is that the Gun is detecting for a MouseButton1Click event, either that or some sort of Mouse event

Could you try doing MouseButton1Down instead?

but the guns are full auto that’s why I use MouseButton1Click

In that case you could just create a variable for detecting both the MouseButton1Down & MouseButton1Up events, and detecting it through a loop if the Held variable is true or not to “auto-fire”

Or you could make it work in relation with both the TouchTap & MouseButton1Click events

1 Like