-- check excutor system local success, CurrentExec = pcall(function() return loadstring(game:HttpGet("https://raw.githubusercontent.com/loffy327/TEST/refs/heads/main/CheckSupportExcutor"))()() end) if not success or not CurrentExec or type(CurrentExec) ~= "table" then game:GetService("Players").LocalPlayer:Kick("Non found Executor!") return end local AllowedExecutors = {["Volt"] = true, ["Potassium"] = true, ["Delta"] = true} if not AllowedExecutors[CurrentExec.Name] then game:GetService("Players").LocalPlayer:Kick("Script chỉ hỗ trợ Volt, Potassium, Delta! Bạn dùng: " .. tostring(CurrentExec.Name)) return end print("Executor Not Support: " .. CurrentExec.Name) local PremiumLib = loadstring(game:HttpGet( "https://raw.githubusercontent.com/loffy327/Mainscript/refs/heads/main/Lib2.lua" ))() local Window = PremiumLib:CreateWindow({ Title = "Loffy Lib ", TutorialMode = true, --- don't delete this line, just change it to false to hide the tutorial menu AccentColor = Color3.fromRGB(99, 102, 241), }) local Tab = Window:CreateTab({ Name = "Main", Icon = "⚡" }) Tab:CreateSection("Features") Tab:CreateToggle({ Name = "Auto Farm", Callback = function(v) print(v) end })()