I have a TextButton located inside of a SurfaceGui that is located inside of PlayerGui and Adorneed to a part in the lobby:
For some reason when I left click on the buttons nothing registers, I’ve tried MouseButton1Down and Activated. I initially thought that it was just not registering any input but the events MouseEnter and MouseButton2Down fire and work perfectly fine:
Will not work:
DonationGui.Buttons:WaitForChild("All-Time").MouseButton1Down:Connect(function()
print(1)
end)
Will work:
DonationGui.Buttons:WaitForChild("All-Time").MouseButton2Down:Connect(function()
print(2)
end)
If anyone has any ideas on how to fix this it would be much appreciated!