Hope This helped!
Script-
local ReplicatedStorage = game:GetService("ReplicatedStorage")
local Workspace = game:GetService("Workspace")
local dropper = script.Parent
local dropperPartTemplate = ReplicatedStorage:FindFirstChild("DropperPart")
if dropper and dropperPartTemplate then
while true do
local newDropperPart = dropperPartTemplate:Clone()
newDropperPart.Position = dropper.Position - Vector3.new(0, dropper.Size.Y / 2 + newDropperPart.Size.Y / 2, 0)
newDropperPart.Parent = Workspace
wait(1)
end
else
print("Dropper or DropperPart not found in the specified locations.")
end