1 | local frame = game.StarterGui.Tutorial.Frame_Tutorial |
2 |
3 | frame:TweenPosition(UDim 2. new( 0.079 , 0 , 0.098 , 0 ), "Out" , "Quint" , 1 ) |
You cannot use startergui when manipulating the gui. You must use PlayerGui
as such.
You must have the script located as a local script inside StarterPlayerScripts
so that it is inside the Player
1 | local player = game.Players.LocalPlayer |
2 | local frame = player.PlayerGui:WaitForChild( "Tutuorial" ):WaitForChild( "Frame_Tutorial" ) |
3 |
4 | frame:TweenPosition(UDim 2. new( 0.079 , 0 , 0.098 , 0 ), "Out" , "Quint" , 1 ) |