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

Fade a BrickColor? Ideas? help?

Asked by 7 years ago

Hi,

This might have been asked but I can't seem to find it.

How would y'all go about fading a brickcolor? This is not a request but for some info and for some guidance. Thanks, Antux

0
as in fade to another BrickColor? or fade out? User#5423 17 — 7y
0
What do you mean? DepressionSensei 315 — 7y

2 answers

Log in to vote
2
Answered by
RubenKan 3615 Moderation Voter Administrator Community Moderator
7 years ago

put SurfaceGui's on each side of the part, make the part completely transparent, then you can use the screengui w/ frames to change the parts color.

Ad
Log in to vote
0
Answered by 7 years ago

You could just make the part's transparency value go up. For example:

local part = script.Parent
for i=0,10 do
    wait(.1)    
    part.Transparency = part.Transparency + .1
end

Answer this question