I am writing this script that lets you type out an image id for it to appear on a gui.
Here is my script:
local button = script.Parent -- the save button
local id = button.Parent.ImageId -- the id the player typed out
local image = button.Parent.ImageDecal -- the decal
button.MouseButton1Click:Connect(function(player)
image.Image = "https://www.roblox.com/library/".. id.ContentText
end)
I have tried changing the link to “rbxassetid://” but it didn’t seem to work either.