local data = game.HttpService:GetAsync("https://www.reddit.com/r/memes/.json")
local meme = game.HttpService:JSONDecode(data)
game.ReplicatedStorage.SendMeme:FireAllClients(meme)
Display skript
local Number = 2
local MemeToDisplay = Meme.data.children[Number]
Title.Text = MemeToDisplay.data.title
Image.Image = MemeToDisplay.data.description
(I write funny words fsr lol)
Soooooooooo i wanna import da image from reddit 2 roblox and idk how to do that so send help i bet this information can tell u want i am tryna do
You can only display images from Roblox’s CDN in-experience. The only way you’d be able to show external images in-experience without uploading them to Roblox is to convert the image into a data format, receive it in Roblox and then reconstruct the image with that data. I don’t recommend it anyhow beyond experimental uses because it trips two red flags; bypassing moderation and impractical.