I recently made a UI that replicates https://create.roblox.com/dashboard/creations
thing is something is stopping me from making one spesific thing that i need to animate and that is this
This is what i use for the script to animate it
local Open = function()
_G.Opened = true
game:GetService("TweenService"):Create(_G.Creators,TweenInfo.new(0.2,Enum.EasingStyle.Circular),{GroupTransparency = 0,Size = UDim2.new(0, 250,0, 250),Position = UDim2.new(0.07, 0,0.247, 0),AnchorPoint = Vector2.new(0,0)}):Play()
end
local Close = function()
_G.Opened = false
game:GetService("TweenService"):Create(_G.Creators,TweenInfo.new(0.2,Enum.EasingStyle.Circular),{GroupTransparency = 0,Size = UDim2.new(0, _G.Creators.Size.X,0, _G.Creators.Size.Y),Position = UDim2.new(0.07, 0,0.247, 0),AnchorPoint = Vector2.new(0.5,0)}):Play()
end
But this is what happens when i click it
The black thing is a shadow i put on the thing so it doesnt have to do anything with the canvas
please let me know if this is a bug or not i cant seem to find a solution