-- HAND UP ,LOOK DA INSTRUCTION (if u using seurch funtion in some of executor) -- so this script is nearly familar as another typical.rng script but -- some anti cheat impove : (remove the most of feature cuz i lazy to add them, only 2 most importantly features left , make the delete effect button to a toggle and it a loop to keep deleting instead of delete the folder in old script, it make u have lower chance to banned (dont ask how i know old script will be banned...)(btw old one anti-afk will have chance to ban too) local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Unknown", Icon = 0, LoadingTitle = "Loading...", LoadingSubtitle = "by Chatgpt guy", Theme = "Ocean", DisableRayfieldPrompts = false, DisableBuildWarnings = false, ConfigurationSaving = { Enabled = false, FolderName = nil, FileName = "abcddd" }, Discord = { Enabled = false, Invite = "", RememberJoins = true }, KeySystem = false, KeySettings = { Title = "Untitled", Subtitle = "Key System", Note = "No method of obtaining the key is provided", FileName = "Key", SaveKey = true, GrabKeyFromSite = false, Key = {"Hello"} } }) getgenv().Auto_Click = true; getgenv().Auto_delete = true; -- funtion function Auto_Click() while task.wait(0.00001) do if getgenv().Auto_Click == true then for _, model in pairs(workspace.Sanses:GetChildren()) do local clickHitbox = model:FindFirstChild("ClickHitbox") if clickHitbox then local clickDetector = clickHitbox:FindFirstChildWhichIsA("ClickDetector") if clickDetector then fireclickdetector(clickDetector) end end task.wait(0.00001) end end end end function Auto_delete() while task.wait(0.01) do if getgenv().Auto_delete == true then local attackFolder = workspace:FindFirstChild("Attack") if attackFolder then local deleteQueue = {} local children = attackFolder:GetChildren() for i = 1, #children do if not children[i]:IsA("Script") then table.insert(deleteQueue, children[i]) end end for i = 1, #deleteQueue do pcall(deleteQueue[i].Destroy, deleteQueue[i]) end end end end end local Tab = Window:CreateTab("Main") local Section = Tab:CreateSection("2features, so sad") local Toggle1 = Tab:CreateToggle({ Name = "Auto Click All sans", CurrentValue = false, Flag = "Click", Callback = function(Value) getgenv().Auto_Click = Value Auto_Click() end, }) local Toggle2 = Tab:CreateToggle({ Name = "Auto delete all attack", CurrentValue = false, Flag = "Delete", Callback = function(Value) getgenv().Auto_delete = Value Auto_delete() end, })