I am making a clicker and I need help. When you click the screen how do you make it so that the number on the screen will change by 1?
Just make a clickable GUI item cover the whole screen, make it invisible, and you can do the rest. For the adding part, just use an external value (IntValue) or a variable. value = value + 1
(or value.Value = value.Value + 1
if you're using an IntValue).