--Script while true do wait(3) local SmallCake = script.Parent local clonedSmall = SmallCake:Clone() clonedSmall.Parent = game.Workspace.Cakes.ClonedCakes clonedSmall.Position = Vector3.new(-280.727, 831.309, -232.018) -- Where the cake will spawn end
This is a script I made. So if i 'Play', or 'Run', this will create cakes falling out from the stove. But each time, the cakes get multiplied and I just waited like 30 sec but about 100 cakes are coming out on the stove every 3 sec! help me. *Supposed to come 1 cake in 3 sec
local sec = 'second' :D
I'm pretty sure you are cloning the script. Indicating from the fact you are cloning script.Parent. You need to make sure to not clone the actual script if you do it will keep multiplying constantly over and over again.