My script suddenly stopped working?

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()