I have a question.
Does Mouse.Button1Down
fire repeatedly?
In Javascript, the "keydown"
event fires repeatedly checking if a key is down, is it the same for roblox lua?
Say for instance you had a script like this:
Mouse.Button1Down:Connect(function()
print("I've been printed!")
end
Would this fire multiple times while holding down the button?