-- Im lazy to comment code local RS = game.ReplicatedStorage local LP = game.Players.LocalPlayer getgenv().AutoSpin = false local SpinButton = LP.PlayerGui:WaitForChild("WheelPopup"):WaitForChild("WheelUI"):WaitForChild("SpinButton") local Library = loadstring(game:HttpGet("https://raw.githubusercontent.com/xHeptc/Kavo-UI-Library/main/source.lua"))() local Window = Library.CreateLib("FREE UGC Obby Hair script", "Midnight") local MainTab = Window:NewTab("Main") local MainSection = MainTab:NewSection("https://dsc.gg/21hub"); do MainSection:NewButton("Tp to end", "Teleport character to end", function() LP.Character:SetPrimaryPartCFrame(CFrame.new(-902, 147, -374)) end) MainSection:NewButton("Get inf spins", "Fire 'SpinModifier' remote to get 10e10 spins", function() RS.SpinModifier:FireServer(nil, 100e10) end) MainSection:NewButton("Increase luck", "Fire 'GetLucky' remote to increase luck", function() RS.GetLucky:Fire(true) end) if getconnections then local AutoSpinSection = MainTab:NewSection("Auto spin by @luadetector"); AutoSpinSection:NewToggle("Auto spin", "If not working - change executor", function(state) getgenv().AutoSpin = state end) else return MainSection:NewLabel("Auto spin unsupported!") end end while wait(0.1) do if getgenv().AutoSpin then for _, connection in pairs(getconnections(SpinButton.MouseButton1Click)) do connection:Fire() end end end