https://devforum.roblox.com/t/pls-help-images-doesnt-load/2064393
there or
local TextBox = script.Parent.Input
local Detecter = script.Parent.TextLabel
script.Parent.TextButton.MouseButton1Click:Connect(function()
if tonumber(TextBox.Text) then
local text = "rbxassetid://"..tostring(TextBox.Text)
script.Parent.Parent.Parent.Parent.Image = text
print("is number")
Detecter.TextColor3 = Color3.new(0.141176, 1, 0.00784314)
Detecter.Text = "Done!"
wait(1)
Detecter.TextColor3 = Color3.new(1, 1, 1)
Detecter.Text = "Use images pls!"
script.Parent.Visible = false
else
print("is letter")
Detecter.TextColor3 = Color3.new(1, 0, 0.0156863)
Detecter.Text = "Not a number!"
wait(1)
Detecter.TextColor3 = Color3.new(1, 1, 1)
Detecter.Text = "Use images pls!"
end
end)
DevForum | Roblox
i have issue the image didnt show when I changed the script to this : local TextBox = script.Parent.Input local Detecter = script.Parent.TextLabel script.Parent.TextButton.MouseButton1Click:Connect(function() if tonumber(TextBox.Text) then local text = "rbxassetid://"..tostring(TextBox.Text) script.Parent.Parent.Parent.Parent.Image = ...