local Players = game:GetService("Players") local ReplicatedStorage = game:GetService("ReplicatedStorage") local Lighting = game:GetService("Lighting") local TeleportService = game:GetService("TeleportService") local LocalPlayer = Players.LocalPlayer local Remotes = ReplicatedStorage:WaitForChild("RemoteEvents") local CrateRemote = Remotes:WaitForChild("crateRemote") local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/miroeramaa/TurtleLib/main/TurtleUiLib.lua"))() local Window = Library:Window("Impossible Squid Game") getgenv().MoneyFarm = false local unpack = table.unpack or unpack local function SafeFire(...) local args = {...} pcall(function() CrateRemote:FireServer(unpack(args)) end) end local function MoneyFarm() task.spawn(function() while getgenv().MoneyFarm do SafeFire("processCrate", 3) task.wait(0.15) SafeFire("processReward", 3) task.wait(0.35) end end) end Window:Toggle("Inf Money", false, function(state) getgenv().MoneyFarm = state if state then MoneyFarm() end end) local espEnabled = false local espParts = {} Window:Toggle("ESP Correct Glass", false, function(state) espEnabled = state local segments = workspace:WaitForChild("segmentSystem"):WaitForChild("Segments") if not state then for _,p in pairs(espParts) do if p and p.Parent then p.Transparency = 0 p.Material = Enum.Material.Plastic local h = p:FindFirstChild("GlassESP") if h then h:Destroy() end end end espParts = {} return end espParts = {} for _,s in pairs(segments:GetChildren()) do local f = s:FindFirstChild("Folder") if f then for _,p in pairs(f:GetChildren()) do if p:IsA("BasePart") then table.insert(espParts, p) local old = p:FindFirstChild("GlassESP") if old then old:Destroy() end if not p:FindFirstChild("breakable") then p.Color = Color3.fromRGB(0,255,0) p.Material = Enum.Material.Neon p.Transparency = 0 local h = Instance.new("Highlight") h.Name = "GlassESP" h.Parent = p h.FillColor = Color3.fromRGB(0,255,0) h.FillTransparency = 0.2 h.OutlineColor = Color3.fromRGB(255,255,255) h.OutlineTransparency = 0 else p.Color = Color3.fromRGB(255,0,0) p.Material = Enum.Material.Neon p.Transparency = 0.75 end end end end end end) Window:Button("Instant Win", function() local lp = game.Players.LocalPlayer if lp.Character and lp.Character:FindFirstChild("HumanoidRootPart") then lp.Character.HumanoidRootPart.CFrame = CFrame.new(-747.048, -2.1, -524.388) end end) Window:Label("Make by Xcx")