Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

Finding thumbnail of a place in an Universe and putting it in the scripts parent TextureID?

Asked by 10 years ago

Clueless, as one might say.

2 answers

Log in to vote
1
Answered by 10 years ago

Hmmmm, I think that won't be possible unless you use a HTTP Script which I don't know how to use since its new sorry. But what you can do maybe is get the teleporter out of your building kits that you get with the studio and use the script that gets the picture of the place ID. But the easy way is screenshotting the website screen and turning it into a decal then using that decal

0
Hmm the thing with the Roblox Teleporter should work. And thank you! The decal thing will allow me to add text to it instead of using surface guis but. I'll do the roblox model teleporter. :) YellowoTide 1992 — 10y
Ad
Log in to vote
0
Answered by 10 years ago

Heres the script. Put a decal, num value named ("PlaceID") and this script in a part and it should work just edit the place id.

local sign = script.Parent 
local teleporter = sign.Parent 

local placeId = teleporter.PlaceId
local decal
local tex

if placeId then 
    placeId = placeId.Value
    decal = script.Parent.Decal
    tex = "http://www.roblox.com/Thumbs/Asset.ashx?format=png&width=420&height=230&assetId=" ..placeId
    decal.Texture = tex
end

Answer this question