-- [Made with DexMCP .gg/dexmcp >.<] local Players = game:GetService("Players") local Workspace = game:GetService("Workspace") local UIS = game:GetService("UserInputService") local LocalPlayer = Players.LocalPlayer local Rayfield = loadstring(game:HttpGet('https://sirius.menu/rayfield'))() local Window = Rayfield:CreateWindow({ Name = "Agaric.io Script", LoadingTitle = "Agaric.io Script", LoadingSubtitle = "by TojiFushiguro", ConfigurationSaving = { Enabled = true, FolderName = "AgaricScript", FileName = "Config" }, KeySystem = false, }) local MainSection = Window:CreateTab("Main").CreateSection("Controls") MainSection:CreateButton({ Name = "Teleport to Random Position", Callback = function() local parts = Workspace:GetDescendants() local candidates = {} for _, v in ipairs(parts) do if v:IsA("BasePart") and v.Size.Magnitude > 0 then table.insert(candidates, v) end end if #candidates == 0 then return end local target = candidates[math.random(1, #candidates)] local pos = target.Position + Vector3.new(0, 5, 0) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChild("HumanoidRootPart") then LocalPlayer.Character.HumanoidRootPart.CFrame = CFrame.new(pos) end end }) MainSection:CreateSlider({ Name = "Walk Speed", Range = {5, 200}, Increment = 5, CurrentValue = 16, Flag = "WalkSpeed", Callback = function(v) if LocalPlayer.Character and LocalPlayer.Character:FindFirstChildOfClass("Humanoid") then LocalPlayer.Character:FindFirstChildOfClass("Humanoid").WalkSpeed = v end end }) MainSection:CreateToggle({ Name = "Anti-AFK", CurrentValue = false, Flag = "AntiAFK", Callback = function(v) if v then UIS.InputBegan:Connect(function() end) end end }) Rayfield:Notify({ Title = "Loaded", Content = "Agaric.io Script ready.", Duration = 4 })