0% found this document useful (0 votes)
81 views2 pages

New Text Document

The document contains code for an auto clicker script for the game Strike Hub Strong Clicker. It loads a GUI library and creates a window with folders for farming and credits. It includes toggles for auto strength, auto sell, auto buff strength, and auto rebirth. Spawn functions run code for the toggled abilities like training strength every 5 seconds. It also prevents the player from idling.

Uploaded by

洪海洋
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
81 views2 pages

New Text Document

The document contains code for an auto clicker script for the game Strike Hub Strong Clicker. It loads a GUI library and creates a window with folders for farming and credits. It includes toggles for auto strength, auto sell, auto buff strength, and auto rebirth. Spawn functions run code for the toggled abilities like training strength every 5 seconds. It also prevents the player from idling.

Uploaded by

洪海洋
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 2

if not game:IsLoaded() then

repeat wait() until game:IsLoaded()


end
if game.PlaceId == 9522149469 then
local library =
loadstring(game:HttpGet(('https://raw.githubusercontent.com/bloodball/-back-ups-
for-libs/main/wall%20v3')))()

local w = library:CreateWindow("Strike Hub Strong Clicker")


local b = w:CreateFolder("Farm")
local e = w:CreateFolder("Credits :)")
local CoreGui = game:GetService("StarterGui")

b:Toggle("Auto Strength",function(bool)
shared.toggle = bool
Strength = bool
print(Strength,bool)
end)

b:Toggle("Auto Sell",function(bool)
shared.toggle = bool
Sell = bool
print(Sell,bool)
end)

b:Toggle("Auto BuffStrength",function(bool)
shared.toggle = bool
BuffStrength = bool
print(BuffStrength,bool)
end)
b:Button("Rebirth",function()
game:GetService("ReplicatedStorage").Remotes.Rebirth:FireServer()
end)
b:Toggle("Auto Rebirth",function(bool)
shared.toggle = bool
AutoRebirth = bool
print(AutoRebirth,bool)
end)

e:Label("Made by Elmejor#6580 Owner TK02#2321",{


TextSize = 15;
TextColor = Color3.fromRGB(255,255,255);
BgColor = Color3.fromRGB(69,69,69);

})
e:Button("Discord server",function()
setclipboard("https://discord.gg/RqGmU9FMfa")
CoreGui:SetCore("SendNotification", {
Title = "Link Set to clipboard",
Text = "Link Set to clipboard",
Duration = 3;
})
end)
e:DestroyGui()
spawn(function()
while wait() do
if Strength == true then
for i = 1,5 do
game:GetService("ReplicatedStorage").Remotes.TrainStrength:FireServer()
end
end
end
end)

spawn(function()
while wait() do
if Sell == true then
for i,v in
pairs(game:GetService("Workspace").TriggerAreas:GetDescendants()) do
if v:IsA"TouchTransmitter" and v.Parent.Name == "Trigger" then

firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 0)

firetouchinterest(game.Players.LocalPlayer.Character.HumanoidRootPart, v.Parent, 1)
end
end
end
end
end)

spawn(function()
while wait(.5) do
if BuffStrength == true then

game:GetService("ReplicatedStorage").Remotes.BuffStrength:FireServer()
end
end
end)

spawn(function()
while wait(5) do
if AutoRebirth == true then
game:GetService("ReplicatedStorage").Remotes.Rebirth:FireServer()
end
end
end)

local vu = game:GetService("VirtualUser")

game:GetService("Players").LocalPlayer.Idled:connect(function()
vu:Button2Down(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
wait(1)
vu:Button2Up(Vector2.new(0,0),workspace.CurrentCamera.CFrame)
end)

CoreGui:SetCore("SendNotification", {
Title = "Script Loaded",
Text = "Script Loaded",
Duration = 3;
})
end

You might also like