Math.Random und Klon
local Children = game.ReplicatedStorage:GetChildren()
local AmountOfChildren = #Children
local RandomPositionInArray = math.random(1, AmountOfChildren)
local RandomChild = Children[RandomPositionInArray]
Busy Buzzard