Categories > Exploiting > Scripts >
[REQUEST] Script that does a left click
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.
Exploits I own:Â Synapse, Electron
Scripts I've made: Aimbot GUI, Draco Admin
Scripts I'm working on: More game ESPs
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
Cancel
Post
Hi.
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.
Cancel
Post
Exploits I own:Â Synapse, Electron
Scripts I've made: Aimbot GUI, Draco Admin
Scripts I'm working on: More game ESPs
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!
Cancel
Post
Added
Also I believe that require a function for the executor to have.
Cancel
Post
Don't buy exploits its not worth it your gonna quit anyway
Taking accountability will help you excel in life
Replied
You really talking about somethings like that?
@PostPersonWhoMadeTheThread
local me = script.Parent
if MouseButton1Up = true --here it is NOT triggered
MouseButton1Down --triggers
Cancel
Post
Users viewing this thread:
( Members: 0, Guests: 1, Total: 1 )
Cancel
Post