So today I was coding when I got this error:
Title is not a valid member of Frame "Tag"
But um so I print the children of Tag and um
It says its right there so like wth is going on???
Anyhow heres my code:
SLUIConnects['SelectedButton.SelectRigs'] = SelectRigs.SelectedButton.Activated:Connect(function()
for _, item in animInfo.Rigs do
local tag = SDisplay.Tag:Clone()
print(tag:GetChildren())
tag.Title = string.upper(item.Name).."|"
tag.Parent = SDisplay.Scroll
SDisplay.Frame.Visible = true
end
SLUIConnects['Close.Sdisplay'] = SDisplay.Title.Activated:Once(function()
SDisplay.Frame.Visible = false
end)
end)