Open Makxuz1 opened 1 year ago
Hi, you can create a function to refresh your paragraph.
local Paragraph = Tab:AddParagraph({
Title = "Title Here",
Content = "Test 1"
})
Tab:AddButton({
Title = "Refresh Paragraph",
Callback = function()
Paragraph:SetDesc("Test 1") -- if it's a table you can put :SetDesc(table.concat(<table>, <seperator>))
end
})
How to refresh Paragraph pls help :)