#how do i make this work?
1 messages · Page 1 of 1 (latest)
use gpt
A few things:
- HouseModels is a table, not the models themselves, so you can't clone it
Clonedoes not take any argumentsRandom.newdoes not return a random number, it returns a new object of theRandomclass. Trymath.random(1, 5)instead, as that actually returns a random number- Since HouseModels is a table, you'd index it via
[], soHouseModels[1]would be the first child in theHousesinstance.
Wrong thingy
I didnt mean to put that emoji
Thanks alot!!