Solved Skript force click

  • Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

  • LOOKING FOR A VERSION OF SKRIPT?

    You can always check out skUnity Downloads for downloads and any other information about Skript!

Status
Not open for further replies.

ItzarReal

Member
Oct 21, 2020
19
0
1
23
Is there a way to force a player to click? heres my code:
Code:
on chat:
    if message is "!autoclicker":
        make player click 50 times #this is whats wrong
if there are any addons i need, please tell me.
edit: i can use
Code:
on chat:
    if message is "!autoclicker":
        loop players in radius 5 of player:
            make player attack loop-player
 
Last edited:
There are many posts exactly like this.
Your code is... completely wrong, there is no "make player click x times".
Try using thatpacketaddon, it can click for you by packets (won't show animation)
There also is no "if message is", only "if message contains".
 
There are many posts exactly like this.
Your code is... completely wrong, there is no "make player click x times".
Try using thatpacketaddon, it can click for you by packets (won't show animation)
There also is no "if message is", only "if message contains".
i used skquery for this, i did
Code:
make player damage loop-player by 1
with a loop.
 
Hello,

Why do you want to code the autoclicker?

There are already lots of autoclicker software are available on the Internet. I am also using the autoclicker for a very long time. Playing incremental games with autoclicker is really fun.

Also, for further information, you can refer to this: source.
 
Status
Not open for further replies.