zhangfengshan

d1

Feb 25th, 2023
29
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.79 KB | None | 0 0
  1. local GUI = game:GetService("CoreGui"):FindFirstChild("STX_Nofitication")
  2. if not GUI then
  3. local STX_Nofitication = Instance.new("ScreenGui")
  4. local STX_NofiticationUIListLayout = Instance.new("UIListLayout")
  5. STX_Nofitication.Name = "STX_Nofitication"
  6. STX_Nofitication.Parent = game.CoreGui
  7. STX_Nofitication.ZIndexBehavior = Enum.ZIndexBehavior.Sibling
  8. STX_Nofitication.ResetOnSpawn = false
  9.  
  10. STX_NofiticationUIListLayout.Name = "STX_NofiticationUIListLayout"
  11. STX_NofiticationUIListLayout.Parent = STX_Nofitication
  12. STX_NofiticationUIListLayout.HorizontalAlignment = Enum.HorizontalAlignment.Right
  13. STX_NofiticationUIListLayout.SortOrder = Enum.SortOrder.LayoutOrder
  14. STX_NofiticationUIListLayout.VerticalAlignment = Enum.VerticalAlignment.Bottom
  15. else
  16. end
Add Comment
Please, Sign In to add comment