ImageID Not Working

When i try and set the imageID Using My Script it just sets it to nothing aka white

script.Parent.MouseButton1Click:Connect(function()
local imageId = script.Parent.Parent.ID.Text
script.Parent.Parent.Parent.ImageLabel.Image = “http://www.roblox.com/asset/?id=” … imageId
script.Parent.Parent.Parent.Teleporter.Image = “http://www.roblox.com/asset/?id=” … imageId
script.Parent.Parent.Parent.UI_Configer.Image = “http://www.roblox.com/asset/?id=” … imageId
end)

maybe don’t use three dots,

Do it like this:
"http://www.roblox.com/asset/?id=" .. ImageID

It should be in this format:

Xxxx.Image = "rbxassetid://" .. ImageID