Random Part Generator
Tracked since by NitoNahj
Concurrent players
Metrics over time
About & history
So this game makes you Parts with a random Size, Position, Material and a Color. why i did this is because i was bored idk. i put this script in the workspace for i = 1, 1000 do local Part = Instance.new("Part") Part.Parent = workspace Part.Anchored = true Part.CanCollide = true Part.Size = Vector3.new(math.random(2, 10), math.random(2, 10), math.random(2, 10)) Part.Position = Vector3.new(math.random(-50, 50), math.random(0, 100), math.random(-50, 50)) Part.BrickColor = BrickColor.random() Part.Material = Enum.Material:GetEnumItems()[math.random(#Enum.PartType:GetEnumItems))] Part.Shape = Enum.PartType:GetEnumItems()[math.random(#Enum.PartType:GetEnumItems())] end

