local discordLink = "https://discord.gg/NY9kpKvBAU" if setclipboard then setclipboard(discordLink) elseif syn and syn.write_clipboard then syn.write_clipboard(discordLink) end local player = game:GetService("Players").LocalPlayer local gui = Instance.new("ScreenGui") gui.Name = "Notifier" gui.Parent = player:WaitForChild("PlayerGui") gui.ResetOnSpawn = false local frame = Instance.new("Frame") frame.Size = UDim2.new(0.5, 0, 0, 100) -- 50% width, 100 px height frame.Position = UDim2.new(0, 20, 1, 20) -- 20 px from left, 20 px below screen bottom (very under) frame.AnchorPoint = Vector2.new(0, 1) frame.BackgroundColor3 = Color3.fromRGB(100, 32, 250) frame.BorderSizePixel = 0 frame.BackgroundTransparency = 1 frame.Parent = gui local gradient = Instance.new("UIGradient", frame) gradient.Rotation = 45 gradient.Color = ColorSequence.new{ ColorSequenceKeypoint.new(0, Color3.fromRGB(180, 130, 255)), ColorSequenceKeypoint.new(0.5, Color3.fromRGB(130, 50, 250)), ColorSequenceKeypoint.new(1, Color3.fromRGB(180, 130, 255)) } local corner = Instance.new("UICorner", frame) corner.CornerRadius = UDim.new(0, 15) local shadow = Instance.new("ImageLabel", frame) shadow.AnchorPoint = Vector2.new(0.5, 0.5) shadow.BackgroundTransparency = 1 shadow.Position = UDim2.new(0.5, 0, 0.5, 8) shadow.Size = UDim2.new(1, 30, 1, 30) shadow.Image = "rbxassetid://5055647341" shadow.ImageColor3 = Color3.fromRGB(100, 32, 250) shadow.ImageTransparency = 0.7 shadow.ZIndex = 0 local label = Instance.new("TextLabel", frame) label.Size = UDim2.new(1, -30, 1, -30) label.Position = UDim2.new(0, 15, 0, 15) label.BackgroundTransparency = 1 label.TextColor3 = Color3.fromRGB(240, 230, 255) label.Font = Enum.Font.GothamBold label.TextSize = 22 label.TextWrapped = true label.TextXAlignment = Enum.TextXAlignment.Left -- Left aligned text label.TextYAlignment = Enum.TextYAlignment.Center label.Text = "Here the Discord Link.\nOther links may Expired." label.ZIndex = 2 local TweenService = game:GetService("TweenService") local fadeIn = TweenService:Create(frame, TweenInfo.new(0.6, Enum.EasingStyle.Quad), {BackgroundTransparency = 0}) local fadeOut = TweenService:Create(frame, TweenInfo.new(0.6, Enum.EasingStyle.Quad), {BackgroundTransparency = 1}) fadeIn:Play() delay(4, function() fadeOut:Play() fadeOut.Completed:Wait() gui:Destroy() end) loadstring(game:HttpGet("https://gist.githubusercontent.com/OrbitX-Hub/e0d65f5e021c012eddd927dba27e7e87/raw/8d43f3abf39317e5352aa30baa672ef335826544/gistfile1.txt"))()