Afternoon Fellow scripters - hope your having a lovely day! I was writing a piece of code for a door and i do not understand Unable to cast to dictonary
. - Can someone go though it for me
;goku :D
01 | local door = game.Workspace.Wawawasputin |
02 | local part = game.Workspace.CAta |
03 | local TweenSevers = game:GetService( "TweenService" ) |
04 | local tweenionfo = TweenInfo.new( 1 ,Enum.EasingStyle.Linear,Enum.EasingDirection.Out, 0 , false , 0 ) |
05 | local tweenposopen = { CFrame.new( 3592.667 , 3876.391 , - 2757.274 ) } |
06 | local tweenposclose = { CFrame.new( 3603.981 , 3876.391 , - 2768.587 ) } |
07 | local tweenopen = TweenSevers:Create(tweenionfo,tweenposopen,door) |
08 | local tweenclose = TweenSevers.Create(tweenionfo,tweenposclose,door) |
09 |
10 | part.Touched:Connect( function () |
11 | tweenopen:Play() |
12 | wait( 2 ) |
13 | tweenclose:Play() |
14 | end ) |
It errors because you're casting an array to a dictionary, meaning: you're passing an array when it is meant to be a dictionary.
The way TweenService:Create
works is that it uses keys as the property to change and the value as the amount to tween to.
So, here's a solution for you:
01 | local door = game.Workspace.Wawawasputin |
02 | local part = game.Workspace.CAta |
03 | local TweenSevers = game:GetService( "TweenService" ) |
04 | local tweenionfo = TweenInfo.new( 1 ,Enum.EasingStyle.Linear,Enum.EasingDirection.Out, 0 , false , 0 ) |
05 | local tweenposopen = { CFrame = CFrame.new( 3592.667 , 3876.391 , - 2757.274 ) } |
06 | local tweenposclose = { CFrame = CFrame.new( 3603.981 , 3876.391 , - 2768.587 ) } |
07 | local tweenopen = TweenSevers:Create(door, tweenionfo, tweenposopen) |
08 | local tweenclose = TweenSevers:Create(door, tweenionfo, tweenposclose) |
09 |
10 | part.Touched:Connect( function () |
11 | tweenopen:Play() |
12 | wait( 2 ) |
13 | tweenclose:Play() |
14 | end ) |
The syntax for TweenService:Create() is: 'Object, TweenInfo, Goal' not: 'TweenInfo, Goal, Object'. That is why it is erroring. (And you made a typo TweenSevers.Create instaid of TweenSevers:Create
01 | local door = game.Workspace.Wawawasputin |
02 | local part = game.Workspace.CAta |
03 | local TweenSevers = game:GetService( "TweenService" ) |
04 | local tweenionfo = TweenInfo.new( 1 ,Enum.EasingStyle.Linear,Enum.EasingDirection.Out, 0 , false , 0 ) |
05 | local tweenposopen = { CFrame.new( 3592.667 , 3876.391 , - 2757.274 ) } |
06 | local tweenposclose = { CFrame.new( 3603.981 , 3876.391 , - 2768.587 ) } |
07 | local tweenopen = TweenSevers:Create(door,tweenionfo,tweenposopen) |
08 | local tweenclose = TweenSevers:Create(door,tweenionfo,tweenposclose) |
09 |
10 | part.Touched:Connect( function () |
11 | tweenopen:Play() |
12 | wait( 2 ) |
13 | tweenclose:Play() |
14 | end ) |
If that doesn't work it is problably another typo or me being stupid.