Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- --Made by Baconhack_26 on Roblox!
- local function notify(text)
- local Notification = Instance.new('ScreenGui')
- Notification.Name = 'Notification'
- Notification.Parent = game.CoreGui
- local Frame = Instance.new('Frame')
- Frame.BackgroundColor3 = Color3.new(0, 0, 0)
- Frame.Position = UDim2.new(0, 150, 0, 0)
- Frame.Size = UDim2.new(0, 500, 0, 100)
- Frame.Parent = Notification
- local TextLabel = Instance.new('TextLabel')
- TextLabel.BackgroundTransparency = 1
- TextLabel.Position = UDim2.new(0, 20, 0, 20)
- TextLabel.Size = UDim2.new(1, -40, 1, -40)
- TextLabel.Text = text
- TextLabel.TextColor3 = Color3.new(1, 1, 1)
- TextLabel.TextSize = 24
- TextLabel.TextStrokeColor3 = Color3.new(1, 0, 0)
- TextLabel.TextStrokeTransparency = 0.5
- TextLabel.TextWrapped = true
- TextLabel.TextXAlignment = Enum.TextXAlignment.Left
- TextLabel.Parent = Frame
- local uiStroke = Instance.new('UIStroke')
- uiStroke.ApplyStrokeMode = Enum.ApplyStrokeMode.Border
- uiStroke.Color = Color3.new(1, 0, 0)
- uiStroke.Thickness = 2
- uiStroke.Parent = Frame
- local sound = Instance.new('Sound')
- sound.SoundId = 'rbxassetid://5455280246'
- sound.Parent = game.SoundService
- sound:Play()
- game:GetService("Debris"):AddItem(sound, 7)
- wait(5)
- Notification:Destroy()
- end
- _G.notify
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement