Won't destroy ImageButton's?
I am trying to make this script get all the player's, clone a ImageButton
named Template
, Change a TextLabel
's text to their name, then name the ImageButton
to the Player's name, and so far it work's beside's it not destroying all the ImageButton
's, can anyone tell me why?
02 | for _,g in pairs (script.Parent:GetChildren()) do |
03 | if g.className = = "ImageButton" then |
06 | for i,v in pairs (game.Players:GetPlayers()) do |
07 | local temp = script.Template:Clone() |
08 | temp.Parent = script.Parent |
10 | temp.Header.Text = v.Name |
11 | temp.Position = UDim 2. new( 0 , 0 , 0 , 17 *i) |