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