Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --[[ Notification Module ]]--
- local Notification = {}
- -- Function to create a notification
- function Notification:Create(title, message, duration)
- duration = duration or 5 -- Default duration is 5 seconds
- -- Create ScreenGui
- local screenGui = Instance.new("ScreenGui")
- screenGui.Name = "NotificationGui"
- screenGui.Parent = game.CoreGui
- screenGui.IgnoreGuiInset = true
- screenGui.ResetOnSpawn = false
- -- Create a frame for the notification
- local frame = Instance.new("Frame")
- frame.Size = UDim2.new(0.4, 0, 0.2, 0)
- frame.Position = UDim2.new(0.5, 0, 0.5, 0)
- frame.AnchorPoint = Vector2.new(0.5, 0.5)
- frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30)
- frame.BorderSizePixel = 0
- frame.Parent = screenGui
- -- Add UICorner for rounded edges
- local uiCorner = Instance.new("UICorner")
- uiCorner.CornerRadius = UDim.new(0, 10)
- uiCorner.Parent = frame
- -- Create a title label
- local titleLabel = Instance.new("TextLabel")
- titleLabel.Size = UDim2.new(1, -20, 0.3, 0)
- titleLabel.Position = UDim2.new(0, 10, 0, 10)
- titleLabel.BackgroundTransparency = 1
- titleLabel.Text = title
- titleLabel.TextColor3 = Color3.fromRGB(255, 255, 255)
- titleLabel.Font = Enum.Font.GothamBold
- titleLabel.TextSize = 20
- titleLabel.TextXAlignment = Enum.TextXAlignment.Left
- titleLabel.Parent = frame
- -- Create a message label
- local messageLabel = Instance.new("TextLabel")
- messageLabel.Size = UDim2.new(1, -20, 0.6, 0)
- messageLabel.Position = UDim2.new(0, 10, 0.4, 0)
- messageLabel.BackgroundTransparency = 1
- messageLabel.Text = message
- messageLabel.TextColor3 = Color3.fromRGB(200, 200, 200)
- messageLabel.Font = Enum.Font.Gotham
- messageLabel.TextSize = 16
- messageLabel.TextWrapped = true
- messageLabel.TextXAlignment = Enum.TextXAlignment.Left
- messageLabel.Parent = frame
- -- Tween the notification to appear with smooth animation
- frame.Position = UDim2.new(0.5, 0, 0.6, 0)
- local tweenService = game:GetService("TweenService")
- local tweenInfo = TweenInfo.new(0.5, Enum.EasingStyle.Quad, Enum.EasingDirection.Out)
- local tween = tweenService:Create(frame, tweenInfo, { Position = UDim2.new(0.5, 0, 0.5, 0) })
- tween:Play()
- -- Automatically remove the notification after the duration
- task.delay(duration, function()
- -- Tween the notification to fade out
- local tweenOut = tweenService:Create(frame, tweenInfo, { Position = UDim2.new(0.5, 0, 0.6, 0) })
- tweenOut:Play()
- tweenOut.Completed:Wait()
- screenGui:Destroy()
- end)
- end
- return Notification
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement