Hello I need help on making my Rock Debris Spread.
As for now it’s just stacking
https://gyazo.com/aa31465dd181a021e5075fdfce8a0922
This is my Script:
while true do
wait(5)
for i = 1,5 do
local Debris = game.ReplicatedStorage.Debris:Clone()
Debris.Parent = game.Workspace
Debris.CFrame = game.Workspace.Part.CFrame
Debris.Velocity = Debris.CFrame.upVector * 100
Debris.Parent = workspace
wait()
end
end