-- https://discord.gg/8wSP7XedR8 local Rayfield = loadstring(game:HttpGet("https://sirius.menu/rayfield"))() local Window = Rayfield:CreateWindow({ Name = "Megaskid.wtf", LoadingTitle = "Loading...", LoadingSubtitle = "Skidded from shitty sandmanhub", ConfigurationSaving = { Enabled = true, FolderName = "ShittySand", FileName = "NewGame_v1", }, KeySystem = false }) local MainTab = Window:CreateTab("🌾 Auto Farm", 4483362458) local FarmingSection = MainTab:CreateSection("Farming Features") local _G = getgenv and getgenv() or _G _G.AutoFarm = false _G.StepValue = 1 local ReplicatedStorage = game:GetService("ReplicatedStorage") local StepRemote = ReplicatedStorage:WaitForChild("Remotes"):WaitForChild("StepTaken") MainTab:CreateInput({ Name = "Step Value", CurrentValue = "1", PlaceholderText = "1e21 or any number", RemoveTextAfterFocusLost = false, Callback = function(Text) local val = tonumber(Text) if val then _G.StepValue = val end end, }) MainTab:CreateToggle({ Name = "Enable Auto Farm", CurrentValue = false, Flag = "AutoFarmToggle", Callback = function(Value) _G.AutoFarm = Value if _G.AutoFarm then task.spawn(function() while _G.AutoFarm do StepRemote:FireServer(_G.StepValue, false) task.wait(0.05) end end) end end, }) Rayfield:Notify({ Title = "Script Loaded", Content = "The shit script is ready", Duration = 5, Image = 4483362458, })