local tab = gui.Tab(gui.Reference("Settings"), "", "每日一言")
local text = gui.Text(tab, http.Get("https://v1.hitokoto.cn/?c=f&encode=text"))
local Update = gui.Button(tab, "刷新", function()
local Text = http.Get("https://v1.hitokoto.cn/?c=f&encode=text")
text:SetText(Text)
end)