local Xeno = loadstring(game:HttpGet("https://raw.githubusercontent.com/itay299/RobloxScripts/refs/heads/main/Scripts/!MyLibrary"))() local UI = Xeno:Create("Hide and Seek Extreme", "HSE_AutoCredits") UI:BindToggle(";") local autoCredits = false UI:Toggle("Auto Credits", false, function(v) autoCredits = v end) local function getCredits() local folder = workspace:FindFirstChild("GameObjects") if not folder then return {} end local credit = folder:FindFirstChild("Credit") if not credit then return {} end if credit:IsA("BasePart") then return {credit} end return credit:GetChildren() end task.spawn(function() while true do task.wait(1) if not autoCredits then continue end local char = game.Players.LocalPlayer.Character if not char then continue end local hrp = char:FindFirstChild("HumanoidRootPart") if not hrp then continue end local credits = getCredits() if #credits == 0 then continue end for _, v in ipairs(credits) do local part = v:IsA("BasePart") and v or v:FindFirstChildWhichIsA("BasePart", true) if part then -- EXACT ON TOP OF CREDIT (no offset) hrp.CFrame = CFrame.new(part.Position) task.wait(0.03) end end end end)