local Library = loadstring(Game:HttpGet("https://raw.githubusercontent.com/bloodball/-back-ups-for-libs/main/wizard"))() local Window = Library:NewWindow("qvpxxx Hub") local Section = Window:NewSection("Functions") local player = game.Players.LocalPlayer local farming = false Section:CreateToggle("Money Farm", function(state) farming = state task.spawn(function() while farming do game:GetService("ReplicatedStorage").Remotes.OpenGift:FireServer() task.wait() end end) end) Section:CreateButton("Teleport Spawn", function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.CFrame = CFrame.new(0, 0.5, 10) end end) Section:CreateButton("Teleport End", function() if player.Character and player.Character:FindFirstChild("HumanoidRootPart") then player.Character.HumanoidRootPart.CFrame = CFrame.new(-1.5, 1218.5, 2811) end end)