Tool click isn't working on iPad

I have a tool and it works when I left-click on PC, but it doesn’t work when I click on iPad. Kind of new to the multi-platform thing.

tool.Equipped:Connect(function()
    if input.UserInputType = Enum.UserInputType.MouseButton1 then
        -- tool stuff here
    end
end)

This is really inefficient

Here is the better and working script for all devices

Tool.Activated:Connect(function() 
 -- your stuff here.
end)
2 Likes