Trying to make a mixing pet function

Hey, so I’m making a pretty simple pet game for fun, and maybe to earn a few extra robux, anyways I’m trying to make something where you can mix let’s say a bear and a dog together in order to give another kind of pet which is the mixture between the two, I don’t know how I would go about achieving that, if anyone can help me that would be greatly appreciated.

I already have a few mixed models and I’m planning to do every single combination, there aren’t that many pets so it shouldn’t be that hard.

If you need any information to help me just let me know!

I wouldn’t recommend building every combination, as the number of pets you will have to make will grow exponentially as you add more of them!

Maybe consider the features a pet has which could be sampled and randomly applied to another pet via a script? Such as:

  • Pet colour
  • Pet body parts such as head/body/legs
  • Pet animations
  • Pet size

A good way to do this would be using a function that takes two pets as parameters and generates a new one by picking random features from each.

1 Like

That’s a good idea except I’m not like the best at scripting so making a script of that kind would take skills I don’t have.