RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"make parts of different sizes to fall out of the sky"
-- server script while true do local part = Instance.new("Part") part.Parent = game.Workspace part.Size = Vector3.new(math.random(1, 4), math.random(1, 4), math.random(1, 4)) part.Position = Vector3.new(math.random(-100, 100), 50, math.random(-100, 100)) part.Velocity = Vector3.new(0, -50, 0) task.wait(1) end