Forum > Scripts >

Clicker Madness Script OPEN SOURCE | im working on clicker simulator script

Posts: 9

Threads: 3

Joined: Apr, 2022

Reputation: 0

Posted

local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()

local w = library:CreateWindow("Main") -- Creates the window

local b = w:CreateFolder("sekkay's script's") -- Creates the folder(U will put here your buttons,etc)

b:Button("Auto Rebirth",function()
    while true do
        wait(0)
    local args = {
        [1] = 100
    }
   
    game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.RebirthService.BuyRebirths:FireServer(unpack(args))
    end
end)

b:Button("Auto Click",function()
    while true do
        wait(0)
    local args = {
        [1] = 9999
    }
    if true then
        game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ClickService.Click:FireServer(unpack(args))
        end
    end --oops
end)

b:Button("Rejoin (Turn's Them Off)",function()
    local ts = game:GetService("TeleportService")

    local p = game:GetService("Players").LocalPlayer
   
     
   
    ts:Teleport(game.PlaceId, p)
end)

b:DestroyGui()
  • 0

Posts: 72

Threads: 9

Joined: Apr, 2022

Reputation: -24

Replied

Im Looking Forward To Clicker Simulator

  • 0

 

 

Get Void Z

Posts: 9

Threads: 3

Joined: Apr, 2022

Reputation: 0

Replied

Its kinda done but the auto click wont stop crashing ur game

  • 0

Posts: 72

Threads: 9

Joined: Apr, 2022

Reputation: -24

Replied

@SekkayScripts

 

Maybe Slow It Down A bit. Thats Normally The Problem

  • 0

 

 

Get Void Z

Roshanth

Chaotic_Void

Posts: 17

Threads: 8

Joined: Jan, 2020

Reputation: 3

Replied

I remade your script(should work better)

 

local library = loadstring(game:HttpGet(('https://raw.githubusercontent.com/AikaV3rm/UiLib/master/Lib.lua')))()

local w = library:CreateWindow("Main") -- Creates the window

local b = w:CreateFolder("sekkay's script's") -- Creates the folder(U will put here your buttons,etc)

b:Toggle("Auto Click",function(bool)
getgenv().click = bool
if bool then
while getgenv().click == bool do
local ohNumber1 = 1
game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.ClickService.Click:FireServer(ohNumber1)
wait()
end
end
end)

b:Toggle("Auto Rebirth",function(state)
    getgenv().rebirth = state
    if state then
    while getgenv().rebirth == true do
    local args = {
        [1] = 100
    }
    game:GetService("ReplicatedStorage").Aero.AeroRemoteServices.RebirthService.BuyRebirths:FireServer(unpack(args))
    wait()
    end
end
end)

b:Button("Rejoin (Turn's Them Off)",function()
    local ts = game:GetService("TeleportService")

    local p = game:GetService("Players").LocalPlayer
   
     
   
    ts:Teleport(game.PlaceId, p)
end)

b:DestroyGui()
  • 0

Exploits I Own: Synapse X, Dx9ware, v-severe, Calamari(Rip)

Users viewing this thread:

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