Location gui help

Currently I’m making a location ui where it tells the user where they are but I’m stumped on how to recreate the text hiding itself shown in the video, I thought maybe they used another frame’s zindex to hide it but that doesn’t seem to work, any possible solutions?

Use TweenService!


Good Luck!

I think that’s pretty obvious :sob:

For this effect to be done you need to make use of TweenService and UIGradient’s Transparency Property

image

The problem is that UIGradients Transparency Property cannot be tweened. I’ve tried many times.

The way I did something similar is creating a number value, then incrementing it by 0.1 so

local num = 0

while num > 1 do
 num += 0.1
 -- Insert Number Sequence Editing
end

I implemented something similar of above. Since the Transparency Property of a UIGradient is a NumberSequence you will have to do a bit of research on this the documentation.

1 Like

This topic was automatically closed 14 days after the last reply. New replies are no longer allowed.