#clearallchildren?
28 messages · Page 1 of 1 (latest)
if part:IsA("TextLabel") then part:ClearAllChildren() end 🤷♂️
no
like
destroy only textlabels
make you own custom function then
like
local function clearAllChildrenThatAre(parent, only)
for i, child in pairs(parent:GetChildren()) do
if child:IsA(only) then child:Destroy() else clearAllChildrenThatAre(child, only) end
end
end
clearAllChildrenThatAre(model, "BasePart")```
note: its recursive so dont use it much
and can u help me
how i can do like uilistlayout.Padding =
what i should write after =
what?
** You are now Level 2! **
if i make new uilistlayout
instance.new
how i can se padding
set
like if i do Padding = (0,10) or just 0,10
then wont work
yeah