I’ve been trying to find a video or blog that can walk me through a simple gui mini game. For example I played a cooking game (can’t remember the name) and while cooking you would play a little mini game that would show arrows via a gui and you would have to match direction of the arrow with the keybaord. Or another game I saw doing something similar was a rap battle game where arrows come up from the bottom of the screen and you have to time when the arrow aligns with another arrow gui image then click that direction at the right time to score. Does anyone know of a good tutorial or walkthrough for making something like that? Every time i search for mini game i get stuff related to 3d games with a bunch of mini games, but not 2d gui mini games. I know I’ll be using the Tween service to move the image labels, but not sure how to accomplish the “arrow over arrow” or a “arrow in the middle of a circle while the image goes across the screen” style. Any pointing in the right direction would be greatly appreciated.
I’ve tried this to just move the ImageLabel from the right side of the screen to the left, and it works, but for some reason the image is also moving up even though im not touching the y value?
local tweenService = game:GetService("TweenService")
tweenService:Create(quarterNote, TweenInfo.new(10, Enum.EasingStyle.Linear, Enum.EasingDirection.In, -1), {Position = UDim2.new(0, -100, 0, 0)}):Play()