Categories > Exploiting > Scripts >

[REQUEST] Script that does a left click

Posts: 257

Threads: 112

Joined: Jun, 2018

Reputation: 5

Posted

I'm making a triggerbot GUI from scratch (unoptimized right now) and all I need is the function/script to trigger a left click.

If you could provide me it, that would be greatly appreciated.

  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

LordExploit

Lol none.

Posts: 78

Threads: 40

Joined: Jun, 2020

Reputation: 0

Replied

My guy if you don't know how to make a simple auto clicker you prolly shouldnt be trying to make a GUI in the first place.

 

I recommend learning SOME of the language your attempting to make it in or else your just going to get lost because YouTube will only help you to a certain extent

 

It's like a Discord bot they show you the basics but if you ever saw the source to a actual bot it's very very different

 

 

  • 0

Hi.

Posts: 257

Threads: 112

Joined: Jun, 2018

Reputation: 5

Replied

A large majority of the scripting in exploiting is because of Roblox's lua environment. There are functions which are provided outside of that environment which is not provided officially within the Roblox wiki for lua.

 

Also, different DLLs have different custom environments. Using the WRD API's environment for clicking is not the same as for something such as Synapse or Protosmasher.

  • 0

Exploits I own: Synapse, Electron

Scripts I've made: Aimbot GUI, Draco Admin

Scripts I'm working on: More game ESPs

Posts: 19

Threads: 2

Joined: Oct, 2020

Reputation: 0

Replied

Let's say you are making a puzzle game. Btn will be the main button. Press with the right click and it prints ("a"). Click it with left click to print ("b").

 

local btn = script.Parent --you might have this set up already

 

--right click (watch closely the difference)

 

btn.MouseButton1Click:Connect(function() --it's a 1

print ("a")

end)

 

--left click

 

btn.MouseButton2Click:Connect(function() --now it's 2!

print ("b")

end)

 

--Enjoy!

  • 0

Posts: 847

Threads: 72

Joined: May, 2020

Reputation: 9

Replied

@LetMeHelp No he said trigger a click not how to detect a click

  • 0

Added

Also I believe that require a function for the executor to have.

  • 0

Don't buy exploits its not worth it your gonna quit anyway

Taking accountability will help you excel in life

Posts: 19

Threads: 2

Joined: Oct, 2020

Reputation: 0

Replied

@ZaphireHacks

 

You really talking about somethings like that?

 

@PostPersonWhoMadeTheThread 

 

local me = script.Parent

 

if MouseButton1Up = true --here it is NOT triggered

MouseButton1Down --triggers 

  • 0

Users viewing this thread:

( Members: 0, Guests: 1, Total: 1 )