local function showNotification(text, duration) local player = game.Players.LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "ScripterblablaCredit" gui.ResetOnSpawn = false gui.Parent = player:WaitForChild("PlayerGui") local frame = Instance.new("Frame") frame.Size = UDim2.new(0, 300, 0, 80) frame.Position = UDim2.new(0.5, -150, 0.1, 0) frame.BackgroundColor3 = Color3.fromRGB(30, 30, 30) frame.BorderSizePixel = 0 frame.BackgroundTransparency = 0.3 frame.Parent = gui local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 12) corner.Parent = frame local stroke = Instance.new("UIStroke") stroke.Color = Color3.fromRGB(0, 170, 255) stroke.Thickness = 2 stroke.Transparency = 0.4 stroke.Parent = frame local label = Instance.new("TextLabel") label.Size = UDim2.new(1, 0, 1, 0) label.BackgroundTransparency = 1 label.Text = text label.TextColor3 = Color3.fromRGB(220, 220, 220) label.TextScaled = true label.Font = Enum.Font.GothamBold label.TextSize = 20 label.Parent = frame frame.BackgroundTransparency = 1 stroke.Transparency = 1 label.TextTransparency = 1 game:GetService("TweenService"):Create(frame, TweenInfo.new(0.6, Enum.EasingStyle.Quint), {BackgroundTransparency = 0.3}):Play() game:GetService("TweenService"):Create(stroke, TweenInfo.new(0.6, Enum.EasingStyle.Quint), {Transparency = 0.4}):Play() game:GetService("TweenService"):Create(label, TweenInfo.new(0.6, Enum.EasingStyle.Quint), {TextTransparency = 0}):Play() task.wait(duration or 5) game:GetService("TweenService"):Create(frame, TweenInfo.new(0.8, Enum.EasingStyle.Quint), {BackgroundTransparency = 1}):Play() game:GetService("TweenService"):Create(stroke, TweenInfo.new(0.8, Enum.EasingStyle.Quint), {Transparency = 1}):Play() game:GetService("TweenService"):Create(label, TweenInfo.new(0.8, Enum.EasingStyle.Quint), {TextTransparency = 1}):Play() task.delay(1, function() gui:Destroy() end) end showNotification("Made by Scripterblabla\nEnjoy it", 4) local Event = game:GetService("ReplicatedStorage").Remotes.Comunicator.Set Event:FireServer( "SetMoveset", "Finger Eater" )