Back to Scripts
Auto Guesser

Auto Guesser

ScriptBlox
Free

Game: Spot the Differences 🔍

210 Views
1 Likes
1 Dislikes
voltex

voltex

offline

Features

autofarm, auto guess, getconnections, guess all

Tags

auto answer gues sall drawing

Script Code

local player = game.Players.LocalPlayer

local answs = {}
local guessesFolder = player.PlayerGui:WaitForChild(player:GetAttribute("Level")):WaitForChild("1"):WaitForChild("Left"):WaitForChild("ZoomViewport"):WaitForChild("Content"):WaitForChild("guesses")

for _, child in ipairs(guessesFolder:GetChildren()) do
    if string.match(child.Name, "^guess_%d+$") or string.find(child.Name, "guess") then
        table.insert(answs, child)
    end
end

for i, obj in ipairs(answs) do
    print(i, obj.Name)

	local drawing = Drawing.new("Circle")
	drawing.Visible = true
	drawing.Filled = false
	drawing.Color = Color3.new(0, 0, 0)
	drawing.Thickness = 2
	drawing.Radius = obj.AbsoluteSize.X / 2
	drawing.Position = Vector2.new(obj.AbsolutePosition.X + obj.AbsoluteSize.X / 2, obj.AbsolutePosition.Y + obj.AbsoluteSize.Y / 2)

	if getconnections then
		local connections = getconnections(obj.MouseButton1Click)
		for _, connection in pairs(connections) do connection:Fire() end
	end
end

Ratings & Reviews

No reviews yet. Be the first to review this script!

Comments (0)

Please login to comment

Login with Discord

Loading comments...