RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"a part drops from this part ever 4 seconds"
-- server script (ServerScriptService) local partToClone = script.Parent -- assuming this is the part you want to clone while true do local newPart = partToClone:Clone() newPart.Parent = game.Workspace newPart.Position = partToClone.Position + Vector3.new(0, -5, 0) -- adjust the Y position as needed wait(4) end