I'm working on a inventory system, but I don't like it just appearing, it looks ugly, So I want it to kind of, smoothly come out of the center, but it isn't working for me, The box doesn't appear when I test it Here's my code inside the frame:
01 | CAS = game:GetService( 'ContextActionService' ) |
02 | function OpenInv(actionName, userInputState, inputObject) |
03 | if userInputState = = Enum.UserInputState.Begin then |
04 |
05 | print ( 'Open Inventory' ) |
06 | script.Parent.Visible = true |
07 | script.Parent.Position = UDim 2. new( 0.5 , 0 , 0.5 , 0 ) -- We set the scales to .5, .5, which is the center of the screen |
08 | script.Parent.Size = UDim 2. new( 0 , 0 , 0 , 0 ) -- We set the frame size to 0, so it will pop out of the middle of the screen. |
09 | script.Parent:TweenSizeAndPosition(UDim 2. new( 0 , 400 , 0 , 600 ), UDim 2. new(. 5 , - 200 , . 5 , 600 ), "Out" , "Quad" , 1 ) -- This will change the size, from 0,0 to 400, 600, and the position will change so the frame stays centered. |
10 | end |
11 | end |
12 | function CloseInv(actionName, userInputState, inputObject) |
13 | if userInputState = = Enum.UserInputState.Begin then |
14 |
15 | print ( 'Close Inventory' ) |
01 | CAS = game:GetService( 'ContextActionService' ) |
02 | function OpenInv(actionName, userInputState, inputObject) |
03 | if userInputState = = Enum.UserInputState.Begin then |
04 |
05 | print ( 'Open Inventory' ) |
06 | script.Parent.Visible = true |
07 | script.Parent.Position = UDim 2. new( 0.5 , 0 , 0.5 , 0 ) -- We set the scales to .5, .5, which is the center of the screen |
08 | script.Parent.Size = UDim 2. new( 0 , 0 , 0 , 0 ) -- We set the frame size to 0, so it will pop out of the middle of the screen. |
09 | script.Parent:TweenSizeAndPosition(UDim 2. new( 0 , 400 , 0 , 600 ), UDim 2. new(. 5 , - 200 , . 5 , - 300 ), "Out" , "Quad" , 1 , true ) -- This will change the size, from 0,0 to 400, 600, and the position will change so the frame stays centered. |
10 | end |
11 | end |
12 | function CloseInv(actionName, userInputState, inputObject) |
13 | if userInputState = = Enum.UserInputState.Begin then |
14 |
15 | print ( 'Close Inventory' ) |
That should work better.