Advertisement
Achitsak

Untitled

Dec 27th, 2024 (edited)
36,918
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Lua 2.65 KB | None | 0 0
  1. --[[ Notification Module ]]--
  2. local Notification = {}
  3.  
  4. -- Function to create a notification
  5. function Notification:Create(title, message, duration)
  6.     duration = duration or 5 -- Default duration is 5 seconds
  7.  
  8.     -- Create ScreenGui
  9.     local screenGui = Instance.new("ScreenGui")
  10.     screenGui.Name = "NotificationGui"
  11.     screenGui.Parent = game.CoreGui
  12.     screenGui.IgnoreGuiInset = true
  13.     screenGui.ResetOnSpawn = false
  14.  
  15.     -- Create a frame for the notification
  16.     local frame = Instance.new("Frame")
  17.     frame.Size = UDim2.new(0.4, 0, 0.2, 0)
  18.     frame.Position = UDim2.new(0.5, 0, 0.5, 0)
  19.     frame.AnchorPoint = Vector2.new(0.5, 0.5)
  20.     frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
  21.     frame.BorderSizePixel = 0
  22.     frame.Parent = screenGui
  23.  
  24.     -- Add UICorner for rounded edges
  25.     local uiCorner = Instance.new("UICorner")
  26.     uiCorner.CornerRadius = UDim.new(0, 10)
  27.     uiCorner.Parent = frame
  28.  
  29.     -- Create a title label
  30.     local titleLabel = Instance.new("TextLabel")
  31.     titleLabel.Size = UDim2.new(1, -20, 0.3, 0)
  32.     titleLabel.Position = UDim2.new(0, 10, 0, 10)
  33.     titleLabel.BackgroundTransparency = 1
  34.     titleLabel.Text = title
  35.     titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
  36.     titleLabel.Font = Enum.Font.GothamBold
  37.     titleLabel.TextSize = 20
  38.     titleLabel.TextXAlignment = Enum.TextXAlignment.Left
  39.     titleLabel.Parent = frame
  40.  
  41.     -- Create a message label
  42.     local messageLabel = Instance.new("TextLabel")
  43.     messageLabel.Size = UDim2.new(1, -20, 0.6, 0)
  44.     messageLabel.Position = UDim2.new(0, 10, 0.4, 0)
  45.     messageLabel.BackgroundTransparency = 1
  46.     messageLabel.Text = message
  47.     messageLabel.TextColor3 = Color3.fromRGB(200, 200, 200)
  48.     messageLabel.Font = Enum.Font.Gotham
  49.     messageLabel.TextSize = 16
  50.     messageLabel.TextWrapped = true
  51.     messageLabel.TextXAlignment = Enum.TextXAlignment.Left
  52.     messageLabel.Parent = frame
  53.  
  54.     -- Tween the notification to appear with smooth animation
  55.     frame.Position = UDim2.new(0.5, 0, 0.6, 0)
  56.     local tweenService = game:GetService("TweenService")
  57.     local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
  58.     local tween = tweenService:Create(frame, tweenInfo, { Position = UDim2.new(0.5, 0, 0.5, 0) })
  59.     tween:Play()
  60.  
  61.     -- Automatically remove the notification after the duration
  62.     task.delay(duration, function()
  63.         -- Tween the notification to fade out
  64.         local tweenOut = tweenService:Create(frame, tweenInfo, { Position = UDim2.new(0.5, 0, 0.6, 0) })
  65.         tweenOut:Play()
  66.         tweenOut.Completed:Wait()
  67.         screenGui:Destroy()
  68.     end)
  69. end
  70.  
  71. return Notification
Tags: Gui
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement