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

How do I make a part see-through?

Asked by 8 years ago

I've been seeing this a lot on games, where you could see through parts like windows.. how do I do this? does it require a script?

0
I want to see more answers... I want to know more :c HungryJaffer 1246 — 8y

4 answers

Log in to vote
1
Answered by 8 years ago

If you go into the properties of a part you may be able to see a box called transparency. Transparency property goes from 0 to 1 so if you want a tint that you can slightly see through go for like 0.7. Otherwise if you really want to script it

TintedPart = game.Workspace.part.Transparency

TintedPart = 0.7

--or

function PartILke()
TintedPart = 0.7
end

There are many ways to go about on this to make it awesome. And if you want a frame you can put in a decal wit ha transparent block. Please refer back to me if more questions abotu this.

Ad
Log in to vote
1
Answered by 8 years ago

No, it's just the Transparency property, just change it to something like 0.5 or something. If you WANT to use a script then change the Transparency property like how you would set the Anchored.


Final Product

local part = workspace.Part
part.Transparency = 0.5 --Half transparent

Hope it helps!

Log in to vote
0
Answered by 8 years ago

script.Parent.Transparency = 0.5

Place this in a Part. Also, you can just change the Part's Transparency manually.

Log in to vote
0
Answered by 8 years ago

No it does not require any scripting knowledge its quiet simple really all you need to do is go into the Bricks Properties and look for transperency and change it how you want.

Answer this question