toclipboard([[ https://discord.gg/bKPRWatprk ]]) local player = game:GetService("Players").LocalPlayer local replicatedStorage = game:GetService("ReplicatedStorage") local runService = game:GetService("RunService") local roomcheck = false local autofarm = false local autoupgrade = false local killall = false local library = loadstring(game:HttpGet(("https://raw.githubusercontent.com/theneutral0ne/wally-modified/refs/heads/main/wally-modified.lua")))() local window = library:CreateWindow('Credit: Neutral') window:Section('Auto Farm') window:Toggle("Auto Farm",{},function(value) autofarm = value end) window:Section('Stuff') window:Toggle("Kill All",{},function(value) killall = value end) window:Button("Remove upgrade ui",function(value) if player.PlayerGui.gameUI.upgradeFrame.Visible then player.PlayerGui.gameUI.upgradeFrame.Visible = false end if game.Lighting:FindFirstChild("deathBlur") then game.Lighting.deathBlur:Destroy() end if game.Lighting:FindFirstChild("screenBlur") then game.Lighting.screenBlur:Destroy() end end) local function room(character) for _,v in workspace:GetDescendants() do if v.ClassName == "ProximityPrompt" and v.Enabled then character.HumanoidRootPart.CFrame = v.Parent.CFrame fireproximityprompt(v) task.wait(0.1) end end for _,v in workspace:GetChildren() do if v:FindFirstChild("ExitZone") then character.HumanoidRootPart.CFrame = v.ExitZone.CFrame task.wait(0.25) character.HumanoidRootPart.CFrame = CFrame.new(v:GetPivot().Position) task.wait(0.25) end end roomcheck = false end runService.RenderStepped:Connect(function(delta) local character = player.Character if character then if autofarm then if roomcheck == false then roomcheck = true room(character) end end if killall then for _,v in workspace:GetChildren() do if v:FindFirstChild("Humanoid") or v:FindFirstChildWhichIsA("Model") and v:FindFirstChildWhichIsA("Model"):FindFirstChild("Humanoid") then if v:GetAttribute("hadEntrance") and v:FindFirstChild("Health") then replicatedStorage.remotes.useAbility:FireServer("tornado") replicatedStorage.remotes.abilityHit:FireServer(if v:FindFirstChild("Humanoid") then v:FindFirstChild("Humanoid") else v:FindFirstChildWhichIsA("Model"):FindFirstChild("Humanoid"),math.huge,{["stun"] = {["dur"] = 1}}) end end end end end end)