-- Info important! https://gist.githubusercontent.com/mykpat63/810dd1e53de60f05ee9ac649ec33ea57/raw/66de555cdb9abea464aca65869b77946089965f4/gistfile1.txt getgenv().farm = true while getgenv().farm do task.wait() local Players = game:GetService("Players") local Workspace = game:GetService("Workspace") local player = Players:FindFirstChild("write your username") if not player then return end if not player.Character then player.CharacterAdded:Wait() end local character = player.Character local humanoidRootPart = character:WaitForChild("HumanoidRootPart") local finishPart = nil local searchLocations = { Workspace.Terrain and Workspace.Terrain.Obbyplot and Workspace.Terrain.Obbyplot["write your obby name"] and Workspace.Terrain.Obbyplot["write your obby name"].finish_normal, Workspace } for _, location in ipairs(searchLocations) do if location then local found = location:FindFirstChild("money") if found and found:IsA("Part") then finishPart = found break end found = location:FindFirstChild("money", true) if found and found:IsA("Part") then finishPart = found break end end end if finishPart then if finishPart:IsA("Part") then finishPart.Anchored = false end for _, child in pairs(finishPart:GetChildren()) do if child:IsA("BodyVelocity") or child:IsA("BodyGyro") or child:IsA("BodyForce") then child:Destroy() end end finishPart.Position = humanoidRootPart.Position end end