MADE BY Andy_Wirus#5999
FEATURE:
- AUTOFARM
local Players = game:GetService("Players")
local player = Players.LocalPlayer or Players.PlayerAdded:Wait()
while task.wait() do
local character = player.Character
if character then
local weight = character:FindFirstChildWhichIsA("Tool")
if weight then
local connection = getconnections(weight.Activated)[1]
if connection then
local evilFunction = connection.Function
if evilFunction then
local remote = debug.getupvalue(evilFunction, 5)
if typeof(remote) == "Instance" and remote:IsA("RemoteEvent") then
local key = debug.getupvalue(evilFunction, 6)
if typeof(key) == "string" then
local part = debug.getupvalue(evilFunction, 7)
if typeof(part) == "Instance" then
remote:FireServer(key, part, 7)
end
end
end
end
end
end
end
end