if game.PlaceId == 17824471584 then local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("OP asf like pls", "DarkTheme") local MainTab = Window:NewTab("Main Stuff") local MainSection = MainTab:NewSection("OP") MainSection:NewToggle("Money must spin the wheel first", "like pls", function(state) if state then _G.loop = true while _G.loop == true do wait(0.1) print("Toggle on") local args={ [1]="Claim" } game:GetService("ReplicatedStorage").CoreGameplay.RemoteEvents.SpinEvent:FireServer(unpack(args)) wait(0.1) end else _G.loop = false while _G.loop do wait(0.1) print("Toggle off") local args={ [1]="Claim" } game:GetService("ReplicatedStorage").CoreGameplay.RemoteEvents.SpinEvent:FireServer(unpack(args)) wait(0.1) end end end) MainSection:NewButton("TP to finish", "like pls", function() local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart rootPart.CFrame = workspace.Lobby.FinishHitbox.CFrame end) MainSection:NewToggle("Auto Farm Finish", "like pls", function(state) if state then _G.loop = true while _G.loop == true do wait(0.5) print("Toggle on") local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart rootPart.CFrame = workspace.Lobby.FinishHitbox.CFrame wait(1.4) end else _G.loop = false while _G.loop do wait() print("Toggle off") local rootPart = game.Players.LocalPlayer.Character.HumanoidRootPart rootPart.CFrame = workspace.Lobby.FinishHitbox.CFrame wait(1.4) end end end) end