-- Load Xeno local Xeno = loadstring(game:HttpGet("https://raw.githubusercontent.com/itay299/RobloxScripts/main/Scripts/!MyLibrary"))() local gameName = game:GetService("MarketplaceService"):GetProductInfo(game.PlaceId).Name local UI = Xeno:Create("Wait For 1 Year", gameName) local player = game.Players.LocalPlayer -- Auto Best Obby local autoBestObby = false local targetPos = Vector3.new(159.85, 30, -629.95) UI:Toggle("Auto Best Obby", false, function(v) autoBestObby = v if v then task.spawn(function() while autoBestObby do local char = player.Character if char and char:FindFirstChild("HumanoidRootPart") then char.HumanoidRootPart.CFrame = CFrame.new(targetPos) end task.wait(2.9) end end) end end)