OwlCodes
(Owl)
September 25, 2022, 7:44pm
2
Can we see the code and the explorer to help us determine the problem?
It is basically a mini game system I am trying to make, here is the code
SOTR654
(SOTR654)
September 25, 2022, 7:48pm
4
GetChildren returns a table, not all instances as a single object, so you must use for do to see each object
for _, Object in pairs(borders) do
print(Object.Name)
-- Code
end
And next time, paste the code into a code block instead of using an image.
For the code block, it must be between 3 grave accents (```).
-- Example
2 Likes
OwlCodes
(Owl)
September 25, 2022, 7:52pm
5
Which line did you try to print, which gave you nil?
Thanks so much! I forgot about those.
1 Like
OwlCodes
(Owl)
September 25, 2022, 7:54pm
7
I am still confused as your method should have worked, but glad it is solved.
1 Like