of     1   

rsh2
#228183387Tuesday, November 28, 2017 6:43 AM GMT

local Id = script.Parent.Text --Textbox input local assetimage = script.Parent.Parent:WaitForChild("SearchedImage") --image location local assetLink = ("https://www.roblox.com/Thumbs/Asset.ashx?width=110&height=110&assetId="+Id) --asset Id added to link for image #### needs function to be changed from ID function userinput ( )end How do i make it so that once the player clicks the enter button in the textbox, the text changes to whatever is in the text. Afterwards, it adds to text ID to the image ### which changes the image of the imagelabel? Im pretty sure i need to add the enter button function for user input of the ID, but I don't know how. I think I might also need something to change the image ID from what it is currently. (which is what i attempted to do). I am not very good at functions and events. Sorry.
rsh2
#228183586Tuesday, November 28, 2017 6:54 AM GMT

Heres a more revised version: local Id = script.Parent.Text local assetimage = script.Parent.Parent:WaitForChild("SearchedImage") local assetLink = ("https://www.roblox.com/Thumbs/Asset.ashx?width=110&height=110&assetId="+Id) function onKeyPress(,) if inputObject.KetCode == Enum.KeyCode.KeypadEnter then end end --I still don't know what to put in function....
darkjediwarriorX
#228183626Tuesday, November 28, 2017 6:56 AM GMT

it's "..id" not "+id"

    of     1