I am trying to make it so a decal ID can be inputted into the textbox so that once a button is pressed, it will display the image onto a decal part in the workspace.
After inputting the ID to the textbox, I looked at the decal ID and it was all right, the id was there. However, it didn’t put the imagine onto the decal.
Here is the code:
local textbox = script.Parent
script.Parent.FocusLost:Connect(function(enter)
if enter then
game.Workspace.Screen.Decal.Texture = "http://www.roblox.com/asset/?id="..textbox.Text
end
end)