How do you tween a text button when a button is clicked?
I would like the text button and a frame to stay on the scene until the button is clicked then I would like to have the button tweened off the scene. Like a play button to a new game.
(Im very new to Lua coding)
This is the code I have:
01 | local player = game.Players.LocalPlayer |
02 | local playerGui = player:WaitForChild( "PlayerGui" ) |
04 | local button = playerGui.PlayScrene.Screne.Play |
05 | local PlayButton = playerGui.PlayScrene.Screne.Play |
06 | local object = playerGui.PlayScrene.Screne |
07 | local click = game.Workspace.Click |
09 | object.Position = UDim 2. new( 0 , -object.Size.X.Offset, 2 , 0 ) |
11 | button.MouseButton 1 Click:connect( function () |
12 | object:TweenPosition(UDim 2. new(- 0.35 , 0 , 0.35 , 0 )) |
I realize that some stuff may be misspelled
Thanks