CREATED BY whybiee
FEATURE:
- AUTO COLLECT DROPS
SCRIPT:
while wait(0.5) do
for _,v in pairs(game:GetService("Workspace").Loaded.Drops:GetDescendants()) do
if v.ClassName == "Part" then
v.Position = game.Players.LocalPlayer.Character.HumanoidRootPart.Position
end
end
end