local TextBox = script.Parent.Input
script.Parent.TextButton.MouseButton1Click:Connect(function()
local text = tostring(TextBox.Text)
script.Parent.Parent.Parent.Parent.Image = text
end)
when i check the image its just number
local TextBox = script.Parent.Input
script.Parent.TextButton.MouseButton1Click:Connect(function()
local text = tostring(TextBox.Text)
script.Parent.Parent.Parent.Parent.Image = text
end)
when i check the image its just number
Try to do "rbxassetid://*yourNr*"
, maybe that could work.
That would be local text = "rbxassetid://"..tostring(TextBox.Text)
thanks man and that was fast reply too!
This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.