Skip to content

Instantly share code, notes, and snippets.

--[[
MINESWEEPER AUTO-SOLVER (ULTRA-OPTIMIZED + TELEPORTATION)
===========================================================
This script automatically solves minesweeper with:
✓ Auto-execution: Starts solving 3 seconds after loading
✓ INSTANT TELEPORTATION: No more walking - teleports instantly!
✓ ULTRA-FAST processing: 0.05s delays (10x faster with teleport!)
✓ Real-time updates: Board scanned every 0.5 seconds
✓ Multiplayer-aware: Detects FlagRed children (other players' flags)
@zaketz
zaketz / adopme
Last active January 1, 2026 14:38
print("Loading game, please wait...")
repeat task.wait(0.5) until game:IsLoaded()
print("Game finished loading")
local Players = game:GetService("Players")
local VirtualUser = game:GetService('VirtualUser')
Players.LocalPlayer.Idled:Connect(function()
VirtualUser:CaptureController()
VirtualUser:ClickButton2(Vector2.new())
print("Loading game, please wait...")
repeat task.wait(0.5) until game:IsLoaded()
print("Game finished loading")
local Players = game:GetService("Players")
local VirtualUser = game:GetService('VirtualUser')
Players.LocalPlayer.Idled:Connect(function()
VirtualUser:CaptureController()
VirtualUser:ClickButton2(Vector2.new())