Yooo wsg dev forum, second post of the evening and this time im still having a conundrum with screen guis, aight so basically i have this very tall screen gui/frame and im trying to use it as a basis for a scrolling credits screen effect (Like the stuff youd see at the end of a movie or video game.) I was wondering if i could make the screen gui slowly move up to mimic the effect of credits.
I see, how would i end up doing that? i havent really touched tween service yet because it makes my brain completly stops every time i look at the documents. but i could only presume its some sort of local script inside the frame.
set the frame position to offscreen to like (CreditPosition - UDim2.fromScale(0, -2)) for each frame
-- iterate through frames in credits frame
for i, frame in pairs(credits:GetChildren()) do
-- tween frame position over 20 seconds to offscreen
Frame:TweenPosition(UDim2.fromScale(0.5, 2 + math.abs(frame.Position.Y)), TweenInfo.new(20));
end