the issue is, is that it keeps using the same random colour.
script:
local wedge = workspace.wedgeyboi
local r = math.random(1,255)
local g = math.random(1,255)
local b = math.random(1,255)
for clone = 1, 10 do
local clone = wedge:Clone()
clone.Color = Color3.fromRGB(r,g,b)
clone.Parent = workspace
clone.Position = Vector3.new(math.random(-400,200), math.random(23, 110), math.random(-400,200))
wait(1)
end