How do i make an autoclicker free script?

id: 751381

category: Help with Scripts

posts: 6

So as you see i am on my tutorial account, And someone asked me to create a tutorial on Making an autoclicker free script. Can you guys help me do it?
If you mean an autoclicker in a clicker game, normal clicks and autoclicks can be programmed like this:

when green flag clicked
set [points] to [0]
set [click power] to [1]
set [autoclick power] to [0]
forever
change [points] by (autoclick power)
wait (1) secs
end

when this sprite clicked
change [points] by (click power)

you can then add other sprites that can upgrade the click power and autoclick power.
I hope this helps

toasty_mc_toastface wrote:

If you mean an autoclicker in a clicker game, normal clicks and autoclicks can be programmed like this:

when green flag clicked
set [points] to [0]
set [click power] to [1]
set [autoclick power] to [0]
forever
change [points] by (autoclick power)
wait (1) secs
end

when this sprite clicked
change [points] by (click power)

you can then add other sprites that can upgrade the click power and autoclick power.
I hope this helps

I think he/she/they meant an auto clicker-free script. I'm not really sure if it's possible - since people could go inside of Scratch clicker projects and create:

forever
change [points] by (99999999999999)
end

--Irrelevant wrote:

toasty_mc_toastface wrote:

If you mean an autoclicker in a clicker game, normal clicks and autoclicks can be programmed like this:

when green flag clicked
set [points] to [0]
set [click power] to [1]
set [autoclick power] to [0]
forever
change [points] by (autoclick power)
wait (1) secs
end

when this sprite clicked
change [points] by (click power)

you can then add other sprites that can upgrade the click power and autoclick power.
I hope this helps

I think he/she/they meant an auto clicker-free script. I'm not really sure if it's possible - since people could go inside of Scratch clicker projects and create:

forever
change [points] by (99999999999999)
end
[/quote

I mean by without clicking see inside.

toasty_mc_toastface wrote:

If you mean an autoclicker in a clicker game, normal clicks and autoclicks can be programmed like this:

when green flag clicked
set [points] to [0]
set [click power] to [1]
set [autoclick power] to [0]
forever
change [points] by (autoclick power)
wait (1) secs
end

when this sprite clicked
change [points] by (click power)

you can then add other sprites that can upgrade the click power and autoclick power.
I hope this helps


Doesnt really work that well i even tried to boost the time.
Norse7 Norse7 loading
to detect an autoclicker you could check to see if a certain number of clicks happened really fast at exact intervals.