--BROUGHT TO YOU BY RobloxScripter.com!--
while true do task.wait(6)
local parentName = "Pickups"
local player = game.Players.LocalPlayer
local parent = workspace:FindFirstChild(parentName)
if parent then
local children = parent:GetChildren()
for _, child in ipairs(children) do
if child:IsA("BasePart") then
child.CFrame = player.Character.HumanoidRootPart.CFrame
end
end
end
end