Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Won't destroy ImageButton's?

Asked by 9 years ago

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?

01function GetPlayers()
02    for _,g in pairs(script.Parent:GetChildren()) do
03        if g.className == "ImageButton" then
04            g:Destroy()
05        end
06        for i,v in pairs(game.Players:GetPlayers()) do
07            local temp = script.Template:Clone()
08            temp.Parent = script.Parent
09            temp.Name = v.Name 
10            temp.Header.Text = v.Name
11            temp.Position = UDim2.new(0,0,0,17*i)
12            temp.Visible = true    
13        end
14    end
15end
16 
17while wait(3) do
18    GetPlayers()
19end
0
Try if g:IsA("ImageButton") then drew1017 330 — 9y

Answer this question