I am trying to replace some non-working asset links in an older game with the new format. But for whatever reason, I cannot. This is my code:
a="http://www.roblox.com/thumbs/asset.ashx?assetId="
b="http://www.roblox.com/thumbs/asset.ashx?assetId=626865471&x=420&y=420"
if string.find(b,a) then
print"yippee"
else
print"no"
end
Why does this not find a in b? It’s clearly in there.