--enjoy the script guys!! loadstring(game:HttpGet('https://raw.githubusercontent.com/plamen6789/UtilitiesHub/main/UtilitiesGUI'))() --notification thingy -- Create ScreenGui local gui = Instance.new("ScreenGui") gui.Name = "NotificationGui" gui.ResetOnSpawn = false gui.Parent = game:GetService("CoreGui") -- Use CoreGui if you're running this through an exploit -- Create notification frame local notif = Instance.new("Frame") notif.Size = UDim2.new(0, 300, 0, 70) notif.Position = UDim2.new(1, -320, 1, -100) notif.BackgroundColor3 = Color3.fromRGB(35, 35, 35) notif.BorderSizePixel = 0 notif.BackgroundTransparency = 0.1 notif.AnchorPoint = Vector2.new(0, 1) notif.Parent = gui notif.Visible = false notif.Name = "NotifFrame" -- Rounded corners local corner = Instance.new("UICorner") corner.CornerRadius = UDim.new(0, 10) corner.Parent = notif -- Notification title local title = Instance.new("TextLabel") title.Text = "✅ Script Loaded" title.Size = UDim2.new(1, -20, 0.4, 0) title.Position = UDim2.new(0, 10, 0, 5) title.BackgroundTransparency = 1 title.TextColor3 = Color3.new(1, 1, 1) title.Font = Enum.Font.GothamBold title.TextScaled = true title.TextXAlignment = Enum.TextXAlignment.Left title.Parent = notif -- Notification message local message = Instance.new("TextLabel") message.Text = "Script script has loaded successfully, Yall welcome lol!(script found by some guy on yt)" message.Size = UDim2.new(1, -20, 0.4, 0) message.Position = UDim2.new(0, 10, 0.5, 0) message.BackgroundTransparency = 1 message.TextColor3 = Color3.new(1, 1, 1) message.Font = Enum.Font.Gotham message.TextScaled = true message.TextXAlignment = Enum.TextXAlignment.Left message.Parent = notif -- Show animation notif.Visible = true notif.Position = UDim2.new(1, -320, 1, 100) notif:TweenPosition(UDim2.new(1, -320, 1, -100), "Out", "Quad", 0.5, true) --hide after 5 seconds ahahahaha task.delay(5, function() notif:TweenPosition(UDim2.new(1, -320, 1, 100), "In", "Quad", 0.5, true) task.wait(0.5) gui:Destroy() end)