RobloxScripterAI
Discord ↗
Link Copied to Clipboard
×
"Create a script that can have random bundles from humanoiddescription"
-- server script local humanoidDescriptions = game.Lighting.HumanoidDescriptions:GetChildren() game.Players.PlayerAdded:Connect(function(player) local randomDescription = humanoidDescriptions[math.random(1, #humanoidDescriptions)] player.CharacterAppearance = randomDescription end)