Scripting Helpers is winding down operations and is now read-only. More info→
Ad
Log in to vote
0

How do I use tweening?

Asked by
funzrey 58
9 years ago

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:

01CAS = game:GetService('ContextActionService')
02function 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 = UDim2.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 = UDim2.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(UDim2.new(0, 400, 0, 600), UDim2.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
11end
12function CloseInv(actionName, userInputState, inputObject)
13    if userInputState == Enum.UserInputState.Begin then
14 
15        print('Close Inventory')
View all 22 lines...

1 answer

Log in to vote
0
Answered by 9 years ago

Please provide explanation with your answers. Simply posting code does not spread knowledge of integral scripting processes which helps people understand the logic and reasoning behind your answer.
01CAS = game:GetService('ContextActionService')
02function 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 = UDim2.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 = UDim2.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(UDim2.new(0, 400, 0, 600), UDim2.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
11end
12function CloseInv(actionName, userInputState, inputObject)
13    if userInputState == Enum.UserInputState.Begin then
14 
15        print('Close Inventory')
View all 25 lines...

That should work better.

0
Thanks i'll try it funzrey 58 — 9y
Ad

Answer this question