Advertisement
drakon-firestone

Untitled

Sep 15th, 2024 (edited)
11
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.42 KB | None | 0 0
  1. local frame = module.GetFrame(frameName)
  2. if frame then
  3. local normalSize = frame.Size
  4. local closeTween = tweenService:Create(
  5. frame,
  6. TweenInfo.new(
  7. CloseSpeed,
  8. ClosingEasingStyle,
  9. ClosingEasingDirection),
  10. {
  11. Size = UDim2.fromScale(0, 0)
  12. }
  13. )
  14. closeTween:Play()
  15. closeTween.Completed:Connect(function()
  16. frame.Visible = false
  17. frame.Size = normalSize
  18. end)
  19. end
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement