loadstring(game:HttpGet("https://raw.githubusercontent.com/LindsaysTD/Lindsay/refs/heads/main/Loader"))() local ScreenGui = Instance.new("ScreenGui",game:GetService("CoreGui")) local Frame = Instance.new("Frame", ScreenGui) local scriptJson = game:HttpGet("https://scriptblox.com/api/script/fetch") -- 20 most recent scripts. Also known as home page scripts. local scripts = game:GetService("HttpService"):JSONDecode(scriptJson) for i, script in next, scripts.result.scripts do -- Example: create a TextLabel for each script local newTextLabel = Instance.new("TextLabel") newTextLabel.Text = "Title: " .. script.title .. "\nSlug: " .. script.slug newTextLabel.Size = UDim2.new(1, 0, 0, 50) newTextLabel.Parent = Frame end