So I've been searching for an answer for a while now, and i can't find anything that'll help me. So i decided to come here...
What im saying is, im most simulators, when you use the tool, it will spawn a textlabel randomly at the bottom of the screen and move up to the top / middle quadrant of the screen. I've had trouble making it myself and i had no luck whatsoever in my mission to find a script that accomplishes my goals...
pls help me.....
Open the explorer which can be found in the view tab open starter gui, click the gui you want to move and you can drag it anywhere on the screen.
What your going to have to do first is set the text labels position on the X axis to a random amount. After that your going to use tweenservice or tweenposition to smoothly tween the text label up the screen at the same X. Once everything is done you just have to destroy the text label and it should look fresh.
local TweenService = game:GetService('TweenService') local function AppearTextLabel() local XPos = math.random() local TextLabel = Instance.new('TextLabel') -- Define your text label TextLabel.Position = UDim2.new(XPos, 0, 1, 0) TextLabel.Parent = ScreenGui -- Define ScreenGui local Glide = TweenService:Create(TextLabel, TweeInfo.new(5), {Position = UDim2.new(XPos, 0, -0.25, 0)}) Glide:Play() Glide.Completed:Wait() TextLabel:Destroy() end