#Can yall help me image doesnt work after different code

6 messages · Page 1 of 1 (latest)

past wing
#

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)
neat sparrow
#

Look into the zindex of the image

#

It’s basically the layer

past wing
#

not frame behind 🤓

past wing
#

.