Can you try replacing the for loop with an in ipairs or pairs loop?
The issue should be line 14
Index.Sample.Penguin:Destroy()
Youâre destroying the clone your trying to use before you use it at all above all code.
1 Like
That isnt it. I store the button in a variable already and so it works. Just in case you were right, i removed that line but it didnt change anything.
Hmm⌠Interesting
I just noticed is you put :Clone()
with :Clone()
in both these variables
local Button = script.Parent.Sample.Penguin:Clone()
andâŚ
local Clone = Button:Clone()
But variable âButtonâ is already using :Clone()