#how do i make this work?

1 messages · Page 1 of 1 (latest)

timid minnow
#

i made this script but im unsure on how to make it work also how could i make this work with a table system instead?

drifting rune
#

use gpt

fast charm
# timid minnow i made this script but im unsure on how to make it work also how could i make th...

A few things:

  1. HouseModels is a table, not the models themselves, so you can't clone it
  2. Clone does not take any arguments
  3. Random.new does not return a random number, it returns a new object of the Random class. Try math.random(1, 5) instead, as that actually returns a random number
  4. Since HouseModels is a table, you'd index it via [], so HouseModels[1] would be the first child in the Houses instance.
timid minnow
#

I didnt mean to put that emoji

#

Thanks alot!!