Hello!
I am trying to make a drawer that when you open it you get a key to something. However when I weld the key to the drawer the tween won’t play.
If I delete the weld then the tween plays:
The weld is somehow preventing the tween from playing. Not even the audio sound effects play even though the weld and the sound are not even correlated to each other in any way.
Here is the script in case it might be a factor of the issue:
local ts = game:GetService("TweenService")
local closed = true
local part = script.Parent
local Clickdetector = script.Parent.ClickDetector
local tweenInfo = TweenInfo.new(
1,
Enum.EasingStyle.Exponential,
Enum.EasingDirection.Out,
0,
false,
0
)
local open = ts:Create(part, tweenInfo, {Position = script.Parent.Parent.Drawer2Target.Position})
local close = ts:Create(part, tweenInfo, {Position = script.Parent.Parent.Drawer2Target2.Position})
Clickdetector.MouseClick:Connect(function()
if closed == true then
open:Play()
script.drawerOpen:Play()
wait()
closed = false
else
close:Play()
script.drawerClose:Play()
closed = true
end
end)
Any help is appreciated!